12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace App\Http\Controllers;
- use App\{
- Follower,
- Hashtag,
- Profile,
- Status,
- UserFilter
- };
- use Auth, DB, Cache;
- use Illuminate\Http\Request;
- class DiscoverController extends Controller
- {
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function home(Request $request)
- {
- return view('discover.home');
- }
- public function showTags(Request $request, $hashtag)
- {
- $this->validate($request, [
- 'page' => 'nullable|integer|min:1|max:10',
- ]);
- $tag = Hashtag::with('posts')
- ->withCount('posts')
- ->whereSlug($hashtag)
- ->firstOrFail();
- $posts = $tag->posts()
- ->whereHas('media')
- ->withCount(['likes', 'comments'])
- ->whereIsNsfw(false)
- ->whereVisibility('public')
- ->orderBy('id', 'desc')
- ->simplePaginate(12);
- if($posts->count() == 0) {
- abort(404);
- }
-
- return view('discover.tags.show', compact('tag', 'posts'));
- }
- }
|