{{-- table loader --}}
{{ __('admin.loading') }}
{{-- table loader --}} {{-- table content --}} @foreach ($units as $unit) @endforeach
{{ __('admin.name') }} {{ __('admin.company') }} {{ __('admin.request_type') }} {{ __('admin.action') }} {{ __('admin.control') }}
{{ $unit->name }} {{ $unit->company->name }} {{ __('admin.request_' . $unit->entityUpdateRequest->type) }} @if ($unit->entityUpdateRequest->type == 'update') @else @endif
{{-- table content --}} {{-- no data found div --}} @if ($units->count() == 0)
{{ __('admin.there_are_no_matches_matching') }}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($units->count() > 0 && $units instanceof \Illuminate\Pagination\AbstractPaginator)
{{ $units->links() }}
@endif {{-- pagination links div --}}