@extends("admin.template.layout") @section("header") @stop @section("content")
Create Customer
@foreach($datamain as $datarow) @endforeach
# Name Image E-mail Phone Active Updated Action
{{$i}} {{$datarow->first_name . ' '. $datarow->last_name}}
{{$datarow->is_social ? 'Social login' : ''}}
@if($datarow->user_image) User @endif {{$datarow->email}} +{{str_replace('+', '', $datarow->dial_code)}} {{$datarow->phone}} {{ get_date_in_timezone($datarow->updated_at, config('global.datetime_format')) }}
@stop @section("script") @stop