Add DiscoverController and hashtag posts view
This commit is contained in:
parent
befa82dc04
commit
3dafc278b5
2 changed files with 59 additions and 0 deletions
22
app/Http/Controllers/DiscoverController.php
Normal file
22
app/Http/Controllers/DiscoverController.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\{Hashtag, Status, StatusHashtag};
|
||||
|
||||
class DiscoverController extends Controller
|
||||
{
|
||||
public function home()
|
||||
{
|
||||
return view('discover.home');
|
||||
}
|
||||
|
||||
public function showTags(Request $request, $hashtag)
|
||||
{
|
||||
$tag = Hashtag::whereSlug($hashtag)->firstOrFail();
|
||||
$posts = $tag->posts()->has('media')->orderBy('id','desc')->paginate(12);
|
||||
$count = $tag->posts()->has('media')->orderBy('id','desc')->count();
|
||||
return view('discover.tags.show', compact('tag', 'posts', 'count'));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue