mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
24 lines
519 B
PHP
24 lines
519 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
use App\{
|
||
|
Place,
|
||
|
Status
|
||
|
};
|
||
|
|
||
|
class PlaceController extends Controller
|
||
|
{
|
||
|
public function show(Request $request, $id, $slug)
|
||
|
{
|
||
|
// TODO: Replace with vue component + apis
|
||
|
$place = Place::whereSlug($slug)->findOrFail($id);
|
||
|
$posts = Status::wherePlaceId($place->id)
|
||
|
->whereScope('public')
|
||
|
->orderByDesc('created_at')
|
||
|
->paginate(10);
|
||
|
return view('discover.places.show', compact('place', 'posts'));
|
||
|
}
|
||
|
}
|