@extends('layouts.app') @section('extra_css') @endsection @section("breadcrumb")
  • @lang('fleet.drivers')
  • @endsection @section('content')

    @lang('menu.drivers')

    @lang('fleet.add')
    @foreach($data as $row) @endforeach
    # @lang('fleet.driverImage') @lang('fleet.name') @lang('fleet.email') @lang('fleet.is_active') @lang('fleet.phone') @lang('fleet.start_date') @lang('fleet.action')
    {{$row->id}} @if($row->getMeta('driver_image') != null) @else @endif {{$row->name}} {{$row->email}} {{($row->getMeta('is_active')) ? "YES" : "NO"}} {{$row->getMeta('phone')}} {{$row->getMeta('start_date')}} {!! Form::open(['url' => 'drivers/'.$row->id,'method'=>'DELETE','class'=>'form-horizontal','name'=>'form_'.$row->id]) !!} {!! Form::hidden("id",$row->id) !!} {!! Form::close() !!}