22 lines
718 B
PHP
22 lines
718 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers;
|
||
|
|
|
||
|
|
use App\Models\Post;
|
||
|
|
|
||
|
|
class PostController extends Controller
|
||
|
|
{
|
||
|
|
public function show(Post $post)
|
||
|
|
{
|
||
|
|
return view('posts.show', [
|
||
|
|
'post' => $post,
|
||
|
|
// @fixme @todo - come back and incorporate image post uploading in admin
|
||
|
|
'images' => [
|
||
|
|
'2' => 'https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=800',
|
||
|
|
'3' => 'https://images.unsplash.com/photo-1667372393119-3d4c48d07fc9?auto=format&fit=crop&q=80&w=800',
|
||
|
|
'4' => 'https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=800',
|
||
|
|
],
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|