@extends('layouts.AdminMaster')
@section('content')
| Staff |
Vehicle |
{!! Form::open(['url'=>'admin/vehicle/staff/assign', 'method'=>'POST']) !!}
|
|
|
|
{!! Form::close() !!}
| Staff id |
Staff Name |
Vehicle No |
Vehicle type |
# |
@foreach($staffs as $staff)
| {{$staff->staff_id}} |
{{$staff->first_name. ' '. $staff->last_name}} |
{{$staff->vehicle->no}} |
{{$staff->vehicle->name}} |
|
@endforeach
@endsection