#laravel-routing
#laravel-маршрутизация
Вопрос:
Код в моем PostsController такой
public function index()
{
$posts = Post::orderBy('created_at','desc')->paginate(8);
return view('pages.index')->with('posts',$posts);
}
Код на моей индексной странице такой:
@if(count($posts) > 0)
@foreach($posts as $post)
<div class="well">
<h5><a href="/posts/{{$post->id}}">{{$post->title}}</a></h5>
<small>Posted on {{$post->created_at}} </small>
</div><hr>
@endforeach
<div class="text-center">
{{$posts->links()}}
</div>
@else
<p>No Post is on this page</p>
@endif
Пожалуйста, помогите застрявшему брату