{{-- @extends('layouts.head_office_app') @section('title', 'Be Spoke Form Record') @section('top-nav-title', 'Be Spoke Form Preview') @section('content') @include('layouts.error')

{{$form->name}} Records

@if(count($form->records) == 0)
No Record Available
@else
@foreach($form->records as $record) @endforeach
Date Location Actions
{{$record->createdDate()}} {{$record->location->name()}} Preview
@endif
@endsection --}} @extends('layouts.head_office_app') @section('title', 'Be Spoke Form Records') @section('content')
{{$form->name}} Records
{{--
@if(request()->query('format') == 'table') @else @endif
--}} @include('layouts.error') @if(!$records)
No Record Available
@else
@include('head_office.be_spoke_forms.record_data',['counter' => 0])
Start
@endif
@section('scripts') @endsection @endsection