@extends('backoffice.layout.master') @section('setSectionTitle', __('Le tue news')) @section('setSectionButton') {{ __('Crea nuova news') }} @endsection @section('setContent')
@if($news->isEmpty())

{{ __('Nessuna news presente') }}

{{ __('Non hai ancora creato nessuna news.') }}

{{ __('Crea la tua prima news') }}
@else
@foreach($news as $item) @endforeach
{{ __('Titolo') }} {{ __('Data creazione') }} {{ __('Ultima modifica') }} {{ __('Azioni') }}
{{ $item->title }} {{ $item->created_at->format('d/m/Y H:i') }} {{ $item->updated_at->format('d/m/Y H:i') }} {{ __('Modifica') }}
@csrf @method('DELETE')
@if($news->hasPages())
{{ $news->links() }}
@endif
@endif
@endsection