8
8
9
9
class ResourceController extends Controller
10
10
{
11
+ // is requested slug relevant to post or page?
11
12
public function show ($ request )
12
13
{
13
14
if (Post::where ('slug ' , $ request )->first ()) {
14
15
$ resource = Post::where ('slug ' , $ request )
15
16
->with ('comments.user ' )
17
+ ->with ('tagged ' )
16
18
->first ();
17
19
return $ this ->showPost ($ resource );
18
20
}
@@ -22,33 +24,29 @@ public function show($request)
22
24
return $ this ->showPage ($ resource );
23
25
}
24
26
27
+ // if there is no resource with this slug
25
28
return abort ('404 ' );
26
29
}
27
30
28
31
public function showPost ($ resource )
29
32
{
30
- // optimizing queries number
31
- if ($ resource ->tagNames ()) {
32
- $ tags = Post::existingTags ()->pluck ('name ' );
33
- } else {
34
- $ tags = [];
35
- }
36
-
37
- $ next = Post::where ('id ' , '> ' , $ resource ->id )
33
+ $ next = Post::select (['slug ' ])
34
+ ->where ('id ' , '> ' , $ resource ->id )
38
35
->published ()
39
36
->oldest ('id ' )
40
37
->first ();
41
- $ prev = Post::where ('id ' , '< ' , $ resource ->id )
38
+ $ prev = Post::select (['slug ' ])
39
+ ->where ('id ' , '< ' , $ resource ->id )
42
40
->published ()
43
41
->latest ('id ' )
44
42
->first ();
45
43
46
44
// view for custom template
47
45
if ($ resource ->custom_template ) {
48
- return view ('frontend.posts.single-custom ' , compact ('resource ' , 'next ' , 'prev ' , ' tags ' ));
46
+ return view ('frontend.posts.single-custom ' , compact ('resource ' , 'next ' , 'prev ' ));
49
47
}
50
48
// view for default template
51
- return view ('frontend.posts.single ' , compact ('resource ' , 'next ' , 'prev ' , ' tags ' ));
49
+ return view ('frontend.posts.single ' , compact ('resource ' , 'next ' , 'prev ' ));
52
50
}
53
51
54
52
public function showPage ($ resource )
@@ -58,8 +56,7 @@ public function showPage($resource)
58
56
// for common templates
59
57
$ next = null ;
60
58
$ prev = null ;
61
- $ tags = null ;
62
- return view ('frontend.pages.single-custom ' , compact ('resource ' , 'next ' , 'prev ' , 'tags ' ));
59
+ return view ('frontend.pages.single-custom ' , compact ('resource ' , 'next ' , 'prev ' ));
63
60
}
64
61
// view for default template
65
62
return view ('frontend.pages.single ' , compact ('resource ' ));
0 commit comments