@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Caja @endslot @slot('title') Conceptos @endslot @endcomponent
@forelse($conceptos as $concepto) @empty @endforelse
# Nombre Precio Tipo Estado Acciones
{{ $loop->iteration }} {{ $concepto->nombre }} S/ {{ number_format($concepto->precio, 2) }} {{ $concepto->tipo_concepto ?? '-' }} @if($concepto->activo) Activo @else Inactivo @endif
No hay conceptos registrados.
@endsection @section('script') @endsection