@extends('admin.layout') @section('content')

{{ trans('Quick audit dropdown list') }}

@php $getUserRoleData = userRoleData(); $dropdown_work_log = explode(",",$getUserRoleData->dropdown_work_log); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
If the status in the work log has been used you cannot delete it unless you change it
@if(count((array) $result)>0) @php $index = 1; @endphp @foreach ($result as $call) @endforeach @else @endif
{{ trans('Id') }} {{ trans('Unique Id') }} {{ trans('Audit type') }} {{ trans('Action') }}
{{ $index++ }} {{ $call->id }} {{ $call->name }}
@csrf @method('DELETE')
No record found
@endsection @section('scripts') @endsection