@extends('admin.admin_master') @section('admin')

All Customer

@foreach ($customer as $key => $item) @endforeach
Sl Customer Name Email Phone Address Action
{{ $key+1 }} {{ $item->name }} {{ $item->email }} {{ $item->phone }} {{ Str::limit($item->address, 50, '...') }} Edit Delete
@endsection