Files
website/resources/views/content/news.blade.php
2026-03-25 00:02:08 +01:00

19 lines
391 B
PHP

@extends('layout.app')
@section('scripts')
@endsection
@section('content')
<h1>{{ __('app.nav.news') }}</h1>
@foreach($blogs as $blog)
<h2>{{ $blog->title }}</h2>
<b>{{ $blog->created_at }}</b><br />
<p>{!! $blog->body !!}</p>
<br />
<hr>
<br />
@endforeach
<br /><br />
{{ $blogs->links() }}
<br /><br />
@endsection