@extends('admin.layouts.app') @section('content')

imgProduct

@forelse($customers as $customer) @empty @endforelse
# First Name Last Name Email Type Actions

{{ $customer->index + 1 }}

{{ $customer->first_name ?? ''}} {{ $customer->last_name ?? ''}} {{ $customer->email ?? '' }} {{ $customer->roles[0]->name ?? '' }}
Data not found!
@endsection @push('script') @endpush