@extends('layouts.app')
@section('title', trans('menu.incident_report_title'))
@section('content')
@php $user = auth()->user(); @endphp
@can('create incident-reports')
{{trans('forms.lbl_add_new')}}
@endcan
0 {{ trans('forms.lbl_items_selected') }}
@if($user->hasAnyPermission(['delete-own incident-reports', 'delete-any incident-reports']))
{{trans('forms.lbl_delete')}}
@endif
|
{{trans("tables.incident_title")}} |
{{trans("tables.date_title")}} |
{{trans("tables.reported_by_title")}} |
{{trans("tables.processed_title")}} |
@if($user->hasAnyPermission(['edit-own incident-reports', 'edit-any incident-reports', 'delete-own incident-reports', 'delete-any incident-reports']))
{{trans("tables.action_title")}} |
@endif
@stop
@section('panel-content')
@include('incidentreport::form', ['edit' => false])
@stop
@section('footer-script')
@stop