লিঙ্ক ও সিঙ্গেল পেইজ
Route::get('post/{id?}', 'PostsController@show');public function show($id){
$post = Post::find($id);
if($post == null) return redirect(action('PostsController@index'));
return view('posts.single', compact('post'));
}@extends('master')
@section('title', '|| Post')
@section('content')
<div class="col-md-12">
<article>
<h1>{!! $post->title !!}</h1>
<div>
<p class="post-info"><span>Created at: {{$post->created_at->format('d-M-Y')}}</span></p>
</div>
<div class="single-post-content">
{!! $post->content !!}
</div>
</article>
</div>
@endsectionকি ভাবে সোর্স কোড পাওয়া যাবে?
Last updated