@extends('admin.layout') @section('content')
Customers
@if (count($customers) == 0)

NO CUSTOMER FOUND

@else
@foreach ($customers as $key => $customer) @endforeach
Name Phone Email Actions
{{strlen($customer->name) > 30 ? mb_substr($customer->name,0,30,'utf-8') . '...' : $customer->name}} {{$customer->phone}} {{!empty($customer->email) ? $customer->email : '-'}} Edit
@csrf
@endif
@endsection