@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
@if($user->hasAnyPermission(['edit-own incident-reports', 'edit-any incident-reports', 'delete-own incident-reports', 'delete-any incident-reports'])) @endif
{{trans("tables.incident_title")}} {{trans("tables.date_title")}} {{trans("tables.reported_by_title")}} {{trans("tables.processed_title")}}{{trans("tables.action_title")}}
@stop @section('panel-content') @include('incidentreport::form', ['edit' => false]) @stop @section('footer-script') @stop