@extends('listing.listing') @section('table') Agregar Nuevo Cliente
Nombre Razón Social Email Télefono Contacto Fecha @if(Auth::user()->rol == 1) @endif @foreach ($clients as $client) {{$client->name}} {{$client->razonSocial}} {{$client->email}} {{$client->tel}} {{$client->seller->name}} {{explode(' ', $client->created_at)[0]}} @if(Auth::user()->rol == 1) @if(Auth::user()->rol == 1) @if($deleted) Reactivar @else Archivar @endif @endif @endif @endforeach @if(Auth::user()->rol == 1) @if($deleted) Ver activos
@else Ver archivados
@endif @endif @endsection