Listado de clientes
| ID | Cliente | Estado | Creado | |
|---|---|---|---|---|
| {{ $client->id }} | {{ $client->client }} | @if($client->active == 1) Activo @else Inactivo @endif | {{ Carbon\Carbon::parse($client->created_at)->diffForHumans() }} |
|
@extends('master', ['activePage' => 'clientes'])
@section('styles')
@endsection
@section('content')
Clientes
Listado de clientes
@foreach($clients as $client)
ID
Cliente
Estado
Creado
@endforeach
{{ $client->id }}
{{ $client->client }}
@if($client->active == 1)
Activo
@else
Inactivo
@endif
{{ Carbon\Carbon::parse($client->created_at)->diffForHumans() }}