@extends('layouts.app') @section('title', 'Actualités') @section('content')

Actualités

@foreach ($posts as $post)
@include('posts.card', ['post'=> $post])
@endforeach
@include('layouts.pagination', ['pagination' => $pagination ])
@endsection