@extends('admin.layouts.app') @section('title', 'Customers') @section('page_css') @endsection @section('section')

Customers

{{-- Add Customer--}}
@forelse($customers as $key => $customer) @empty

There are no records

@endforelse
S.No First Name Last Name Email Country Status Action
{{++$key}} {{$customer->first_name}} {{$customer->last_name}} {{$customer->email}} {{$customer->country}}
@endsection @section('script') @endsection