13 lines
419 B
PHP
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 |