@extends("admin.layout.layout") @section("styles") @php $titulo = "Becas del estudiante"; $modulo = "Estudiante"; $vista="Becas"; @endphp {{getenv("APP_NAME")}} | {{$titulo}} @endsection @section("contenido")
@include("estudiante.perfil.components.header") @include("admin.estudiante.components.links")
@if ($errors->any())

El registro tiene los siguientes errores.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success')) @endif
id)}}" method="post"> @csrf
@can("Estudiante beca agregar") @endcan
@foreach($becas as $beca) @can("Estudiante beca borrar") @endcan @endforeach
Beca Asignada por Inicio Vence
{{$beca->tipo_beca->tipo_beca}} {{$beca->user_crea->nombre}} {{$beca->inicio}} {{$beca->vence}}
@endsection @section("scripts") @vite(['resources/js/global/validaciones.js']) @endsection