mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
@extends('layouts.public.main')
|
|
|
|
@section('content')
|
|
<article id="main">
|
|
<section class="wrapper style5">
|
|
<div class="inner">
|
|
<h2>Nouvelles</h2>
|
|
<p>Aliquam ut ex ut interdum donec amet imperdiet eleifend</p>
|
|
@if ($news->isEmpty())
|
|
<h4 class="text-center">Aucune nouvelles</h4>
|
|
@endif
|
|
<div class="row">
|
|
@foreach ($news as $new)
|
|
<div class="col-md-4">
|
|
<h3>{{ $new->title }}</h3>
|
|
<p class="news-body-full">
|
|
{{ $new->body }}
|
|
</p>
|
|
<span class="news-small">{{ \App\User::find($new->user_id)->fullname()}}, {{ $new->created_at }}</span>
|
|
<a name="news" id="news" class="btn btn-block btn-secondary mt-2" href="/news/{{ $new->id }}" role="button">Voir plus!</a>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
<div class="m-3" role="group">
|
|
{{ $news->links() }}
|
|
</div>
|
|
<a href="/" class="btn button primary">Retour</a>
|
|
</div>
|
|
</section>
|
|
</article>
|
|
@endsection |