@extends('customers.layout') @section('content')

Customers management

@session('success') @endsession @if (auth()->user()->hasRole('Admin')) @endif @forelse ($customers as $customer) @if (auth()->user()->hasRole('Admin')) @endif @empty @endforelse
No Company Name email Type CountryInsert byAction
{{ $loop->iteration }} {{ $customer->company }} {{ $customer->name }} {{ $customer->email }} {{ $customer->type }} {{ $customer->country }}{{ $customer->user_name }}
Products Edit @csrf @method('DELETE')
No Customer Found!
{{ $customers->links() }}
@endsection