@extends('admin.layouts.app')
@section('title', 'Customers')
@section('page_css')
@endsection
@section('section')
| S.No |
First Name |
Last Name |
Email |
Country |
Status |
Action |
@forelse($customers as $key => $customer)
| {{++$key}} |
{{$customer->first_name}} |
{{$customer->last_name}} |
{{$customer->email}} |
{{$customer->country}} |
|
|
@empty
There are no records
@endforelse
@endsection
@section('script')
@endsection