@extends('adminlte::page')
@section('content_header')
@section('plugins.Datatables', true)
Clientes
@stop
@section('content')
{{-- Setup data for datatables --}}
@php
$heads = [
'Id',
'Cliente',
'RUT',
'Dirección',
'Acciones',
'Mapa'
];
$btnEdit = '';
$btnShow = '';
$config = [
'data' => $clientes,
'order' => [[1, 'asc']],
'columns' => [null, null, null, null,['orderable' => true]],
];
@endphp
@if(session()->has('success'))
{{session()->get('success')}}
@endif
@if(session()->has('danger'))
{{session()->get('danger')}}
@endif
@foreach($config['data'] as $row)
| {{$row->cliente_id}} |
{{$row->cliente_nombre}} |
@if ($row->cliente_esFacturable == 1) {{number_format($row->cliente_rut,0,".",".")}}-{{$row->cliente_dv}} @endif |
{{$row->cliente_direccion}} |
{{-- --}}
|
|
@endforeach
@csrf
{{-- Minimal --}}
{{-- Example button to open modal --}}
@stop
@section('js')
@stop