@extends('layouts.main', ['activePage' => 'proyect', 'titlePage' => 'Proyecto']) @section('content')

Proyecto

Lista de Proyectos

@can('proyecto_create') Añadir proyecto @endcan
@if($posts->count())
@forelse ($posts as $post) @empty @endforelse
Especialidad Titutlo Fecha de creación Acciones
{{ ++$i }} {{ $post->nombre_proyecto }} {{ $post->nombre }} {{ $post->created_at->toFormattedDateString() }} @can('proyecto_show') @endcan @can('proyecto_edit') edit @endcan @can('proyecto_delete')
@csrf @method('DELETE')
@endcan
Sin registros.
@else Sin registros. @endif @endsection @if (session('mensaje')) @section('scripts') @endsection @endif