@extends('layouts.head_office_app') @section('title', 'Import location incidents') @section('sidebar') @include('layouts.company.sidebar') @endsection @section('content')
@include('layouts.error')

{{$location->name()}} Records

@if(count($records) == 0)
No Record Available
@else
@csrf @include('head_office.incidents.records',['records' => $records])
Date Status Actions
@endif
@include('head_office.incidents.import_cases')
@if(Session::has('success')) @elseif(Session::has('error')) @endif @endsection