@extends('backend.layouts.app') @section('title','Profile') @section('content')

{{ _trans('common.Profile') }}

{{ _trans('common.Name') }} @foreach ($customers as $key=>$customer) @endforeach
{{ _trans('common.SL') }}{{ _trans('common.Phone') }} {{ _trans('common.Email') }} {{ _trans('common.Join Date') }}
{{ $key+1 }} {{ $customer->name }} {{ $customer->phone }} {{ $customer->email }} {{ $customer->created_at }}
@endsection @push('js') @endpush