@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
Notas
@can('note.create') Crear nota @endcan
@forelse ($notes as $note) @empty

Sin notas.

@endforelse
Id Titulo Descripción Opciones
{{$note->id}} {{$note->title}} {{$note->description}} @can('note.edit') @endcan @can('note.destroy')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection