@extends('layouts.app') @section('title', 'Clientes Particulares') @section('content')
| Cliente | Cédula / NIT | Contacto | Estado | Acciones |
|---|---|---|---|---|
|
{{ strtoupper(substr($customer->name, 0, 2)) }}
{{ $customer->name }}
|
{{ $customer->document }} |
@if($customer->phone)
{{ $customer->phone }}
@endif
@if($customer->email)
{{ $customer->email }}
@endif
|
{{ $customer->is_active ? 'Activo' : 'Inactivo' }} |
Los clientes se guardan automáticamente al crear una Orden de Servicio de mostrador.
@if(Auth::user()->isAdmin()) Crear Cliente Manualmente @endif