@include('layouts.head')
@include('layouts.header')
@include('layouts.sidebar')
@if (session()->has('message'))
{{ session()->get('message') }}
@endif

{{ __('language.All Information list') }}

@foreach ($informations as $information) @endforeach
# {{ __('language.Title') }} {{ __('language.Description') }} {{ __('language.Action') }}
{{ $information->id }} {{ $information->title }} {!! Str::limit($information->description, 60, '...') !!}
@csrf @method('DELETE')
@include('layouts.footer')