@extends('layouts.dashboard') @section('title', 'Customers') @section('content')

Customers

@if (auth()->user()?->isOwner() || auth()->user()?->isSuperAdmin()) Import customers @endif
@foreach ($customers as $customer) @endforeach
Name Company Type Email Mobile
{{ $customer->first_name }} {{ $customer->last_name }} {{ $customer->company }} {{ $customer->type->value }} {{ $customer->email }} {{ $customer->mobile }} View
@endsection