@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
Conceptos
@can('concepto.create') Crear concepto @endcan
@forelse ($conceptos as $concepto) @empty

Sin conceptos.

@endforelse
Id Nombre Opciones
{{$concepto->id}} {{$concepto->name}} @can('concepto.edit') @endcan @can('concepto.destroy')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection