{{ str_pad($upload->id, 6, "0", STR_PAD_LEFT)}}
|
{{$upload->file_name}} | {{$upload->kind}} | {{$upload->created_at->format('d/m/Y')}} |
Cargando
|
@if($upload->kind == 'Cartera SISPRO')
{{ $upload->proclients()->has('auction')->count() }}
@elseif(strpos($upload->kind, 'Subasta') !== FALSE)
{{ $upload->auctions()->has('proclient')->count() }}
@endif
|
@if (Auth::user()->is_admin)
{!! Html::linkAction('Admin\UploadsController@matchUploadedFiles', 'Realizar cruce', $upload->id, ['class' => 'btn btn-sm btn-primary']) !!}
@endif
{!! Html::linkRoute('admin.cargas.show', 'Ver detalles', $upload->id, ['class' => 'btn btn-sm btn-default']) !!}
|
No hay cargas que mostrar
|