@extends('backend.master') @section('content')

List Register Customer

@foreach($user as $key=>$row) @endforeach
Sl Date Name Email Phone Action
{{ $key+1}} {{ \Carbon\Carbon::parse($row->created_at)->format('d M Y') }} {{ $row->name}} {{ $row->email}} {{ $row->phone}}
@endsection