@extends('shared/layout')
@section('title','Listado de cajas')
@section('content')
|
|
|
Id |
Codigo |
Nombre |
Descripcion |
Valor inicial |
@foreach($cajas as $item)
|
|
|
|
{{$item->id}} |
{{$item->codigo}} |
{{$item->nombre}} |
{{$item->descripcion}} |
${{number_format($item->valor_inicial)}} |
@endforeach
@endsection