@extends('admin.layout') @section('content')
@if (count($errors) > 0) @if($errors->any()) @endif @endif
@if(count($customers['result'])>0) @foreach ($customers['result'] as $key=>$row) @endforeach @else @endif
ID Username Name Email Mobile Action
{{ $i++ }} {{ $row->name }} {{ $row->fname }} {{ $row->lname }} {{ $row->email }} {{ $row->contact }}
{{ trans('labels.NoRecordFound') }}
{{$customers['result']->links()}}
@endsection