@extends('layouts.admin') @section('content')
@can('notice_create')
@endcan
{{ trans('cruds.notice.title_singular') }} {{ trans('global.list') }}
@foreach($notices as $key => $notice) @endforeach
{{ trans('cruds.notice.fields.id') }} {{ trans('cruds.notice.fields.title') }} {{ trans('cruds.notice.fields.description') }} {{ "Created By" }} {{ "Status" }} {{trans('global.actions')}}
{{ $notice->id ?? '' }} {{ $notice->title ?? '' }} {{ $notice->description ?? '' }} {{ 'Admin' }} {{ ''}} @can('notice_show') {{ trans('global.view') }} @endcan @can('notice_edit') {{ trans('global.edit') }} @endcan @can('notice_delete')
@endcan
@endsection @section('scripts') @parent @endsection