image Notifications List
@foreach ($notifications as $notification) @endforeach
ID Title Description Image Status Action
{{ $notification->id }} {{ $notification->title }} {{ $notification->description }} Image {{ $notification->status == 'active' ? 'Active' : 'Inactive' }}
Edit {!! Form::open(['method' => 'DELETE', 'route' => ['notifications.destroy', $notification->id]]) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
@foreach ($notifications as $notification)

{{ $notification->title }}

{{ $notification->description }}

Image

Status: {{ $notification->status == 1 ? 'Active' : 'Inactive' }}

Edit {!! Form::open(['method' => 'DELETE', 'route' => ['notifications.destroy', $notification->id]]) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
@endforeach