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

Sin carreras.

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