@extends('layouts.main') @section('title', 'Driver Transaction') @section('content') @push('head') @endpush
@include('include.message')
@csrf
{!! Form::select('driver_ids[]', $drivers, null,[ 'class'=>'form-control select2', 'multiple' => true ]) !!}
{!! Form::select('action_sources[]', $actionSourceList, null,[ 'class'=>'form-control select2', 'multiple' => true]) !!}
{{ __('Transaction Id')}} {{ __('Driver')}} {{ __('Order Id')}} {{ __('Amount')}} {{ __('Old Balance')}} {{ __('New Balance')}} {{ __('Message')}} {{ __('Created At')}} {{ __('Action')}}
@push('script') @endpush @endsection