@extends('template.main')
@section('titulo','Gestión de Carreras')
@section('cabecera')
@endsection
@section('contenido')
Programas de {{$carrera->nombre}}
Carrera |
Cuatrimestre |
Nombre |
Clave |
Acciones |
@php $m=0; @endphp
@foreach($programas as $row)
{{ $carrera->nombre ?? ''}} |
{{ $row->cuatrimestre ?? 'S/N' }} |
{{ $row->nombre ?? 'S/N' }} |
{{ $row->clave ?? 'S/N' }} |
|
@php $m++ @endphp
@endforeach
@php $j=0 @endphp
@foreach($programas as $row)
@php
$programa = \App\Programa::where('id',$row->id)->first();
@endphp
@php $j++; @endphp
@endforeach
@endsection