ID | Title | Description | Image | Status | Action |
---|---|---|---|---|---|
{{ $notification->id }} | {{ $notification->title }} | {{ $notification->description }} | {{ $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)
@endforeach
{{ $notification->title }}
{{ $notification->description }}
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() !!}