@extends("admin.template.layout") @section("header") @stop @section("content")
Clear
@foreach($list as $datarow) @endforeach
# Name Email Mobile No Address Country/State/City Created
{{$i}} {{$datarow->first_name}} {{$datarow->last_name}} {{$datarow->email}} +{{$datarow->dial_code}} {{$datarow->phone}} @if(!empty($datarow->vendordata)) {{$datarow->vendordata->address1}}
{{$datarow->vendordata->address2}}
{{$datarow->vendordata->street}} @endif
@if(!empty($datarow->country)) {{$datarow->country->name}},{{$datarow->state->name}},{{$datarow->city->name}} @endif {{$datarow->created_at}}
Total {{ $list->total() }} entries
{{-- {!! $list->links('admin.template.pagination') !!} --}} {!! $list->appends(request()->input())->links('admin.template.pagination') !!}
@stop @section("script") @stop