@extends('layouts.app')
@section('style')
@endsection
@section('content')
Nombre |
Dirección |
Teléfono |
Celular |
Correo electrónico |
Estado |
Modificar |
@forelse($customers as $customer)
{{ $customer['name'] }} |
{{ $customer['address'] }} |
{{ $customer['phone'] }} |
{{ $customer['celphone'] }} |
{{ $customer['email'] }} |
@if($customer['status'] == 'active')
{{ ucfirst($customer['status']) }}
@else
{{ ucfirst($customer['status']) }}
@endif
|
|
@empty
No hay clientes
@endforelse
@endsection
@push('scripts')
@endpush