Files
ISI2/laravel/resources/views/index.blade.php
2025-04-17 14:30:56 +02:00

13 lines
419 B
PHP

@extends('layout')
@section('contenu')
@foreach($billets as $billet)
<article>
<header>
<a href="{{ route('billets.show', $billet->id) }}"><h1 class="titreBillet">{{ $billet->BIL_TITRE }}</h1></a>
<time>{{ $billet->BIL_DATE }}</time>
</header>
<p>{{ $billet->BIL_CONTENU }}</p>
</article>
<hr />
@endforeach
@endsection