@extends('crudbooster::admin_template') @section('content') @if($index_statistic)
@foreach($index_statistic as $stat)

{{ $stat['count'] }}

{{ $stat['label'] }}

@endforeach
@endif @if(!is_null($pre_index_html) && !empty($pre_index_html)) {!! $pre_index_html !!} @endif @if(g('return_url'))

  {{trans('crudbooster.form_back_to_list',['module'=>urldecode(g('label'))])}}

@endif @if($parent_table)
@foreach(explode(',',urldecode(g('parent_columns'))) as $c) @endforeach
{{ ucwords(urldecode(g('label'))) }}
@if(urldecode(g('parent_columns_alias'))) {{explode(',',urldecode(g('parent_columns_alias')))[$loop->index]}} @else {{ ucwords(str_replace('_',' ',$c)) }} @endif {{ $parent_table->$c }}
@endif
@if(!empty($result)) @foreach($result as $row) @endforeach @endif
SNo Transaction No Date Customer Type Title Name Mobile Address Discount VAT Total Status do
{{$e }} {{$row->id }} {{$row->tDate }} id")}}')" href='#'>{{$row->customerType }} {{$row->title }} {{$row->name }} {{$row->mobile }} {{$row->address }} {{$row->discount }} {{$row->vat }} {{$row->total }} {{$row->status }}
@if(CRUDBooster::isUpdate() && $button_edit && $row->Status !="Closed" ) id")}}')" class="btn btn-warning btn-xs btn-flat" href='#'> @if($button_delete && CRUDBooster::isDelete() && $row->Status !="Closed" ) @endif @endif
@if(!empty($result))

{!! urldecode(str_replace("/?","?",$result->appends(Request::all())->render())) !!}

@endif
@endsection