@extends('fleet.layout.base') @section('title', 'Provider Documents ') @section('content')
Provider Service Type Allocation
@if($ProviderService->count() > 0)
Allocated Services :
@foreach($ProviderService as $service) @endforeach
Service Name Service Number Service Model Action
{{ $service->service_type->name }} {{ $service->service_number }} {{ $service->service_model }}
{{ csrf_field() }} {{ method_field('DELETE') }}
Service Name Service Number Service Model Action
@endif
{{ csrf_field() }}
Provider Documents
@foreach($Provider->documents as $Index => $Document) @endforeach
# Document Type Status Action
{{ $Index + 1 }} {{ $Document->document->name }} {{ $Document->status }}
View
{{ csrf_field() }} {{ method_field('DELETE') }}
# Document Type Status Action
@endsection