@extends('layouts.admin') @section('title', 'Customers') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent
Customers
@foreach($customers as $key=>$customer) @if($customer->deleted_at == null) @else @endif @endforeach
Id Name Email phone Address Status Action
{{$key + 1}} {{$customer->name}} {{$customer->email}} {{$customer->phone}} {{str_limit($customer->address, 20)}}
@endsection @push('js') @endpush