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