@extends('admin.template.layout') @section('content')
@if(get_user_permission('customers','c')) @endif
Clear
@foreach ($list as $role) @endforeach
# Customer Name Email Phone User Code Status Created on
{{ $loop->index + 1 + ($list->perPage() * ($list->currentPage() - 1)) }} {{ $role->name }} {{ $role->email }} +{{ $role->dial_code }} {{ $role->phone }} {{ $role->user_code }} {{ $role->getStatusText() }} {{ web_date_in_timezone($role->created_at) }}
{!! $list->appends(request()->all())->links('admin.template.pagination') !!}
@stop @section('script') @stop