@extends('layouts.app') @section('title', 'Customers') @section('content')
| Name | Phone | Type | Status | Actions | |
|---|---|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->phone }} | @if($user->is_owner) Owner @else Customer @endif | @if($user->deactivated_at) Deactivated @else Active @endif | |
| @if(request('search')) No customers found matching your search criteria. @else No customers found. @endif | |||||