@extends('layouts/layout')
@section('content')
Title |
Start At |
End At |
Created At |
Action |
@forelse ($newss as $news)
{{ $news->title }} |
{{ $news->start_at }} |
{{ $news->end_at }} |
{{ $news->created_at->format('d M Y') }} |
|
@empty
There are no news yet. |
@endforelse
{{ $newss->links() }}
@endsection