mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
@extends('layouts.public.main')
|
|
|
|
@section('content')
|
|
<article id="main">
|
|
<section class="wrapper style5">
|
|
<div class="inner">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2>{{ $new->title }}</h2>
|
|
<div class="row gtr-50 gtr-uniform">
|
|
@foreach ($new->pictures as $picture)
|
|
<div @if ($loop->first)
|
|
class="col-12"
|
|
@else
|
|
class="col-4"
|
|
@endif><span class="image fit"><a href="/picture/{{$picture->id}}"><img src="{{ $picture->url }}" alt="{{ $picture->title }}"></a></span></div>
|
|
@endforeach
|
|
</div>
|
|
<p>
|
|
{{ $new->body }}
|
|
</p>
|
|
<span class="news-small">{{ \App\User::find($new->user_id)->fullname()}}, {{ $new->created_at }}</span>
|
|
<a href="{{ url()->previous() }}" class="btn button primary">Retour</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</article>
|
|
@endsection |