@extends('template.main') @section('titulo','Gestión de Carreras') @section('cabecera') @endsection @section('contenido')

Programas de {{$carrera->nombre}}


@php $m=0; @endphp @foreach($programas as $row) @php $m++ @endphp @endforeach
Carrera Cuatrimestre Nombre Clave Acciones
{{ $carrera->nombre ?? ''}} {{ $row->cuatrimestre ?? 'S/N' }} {{ $row->nombre ?? 'S/N' }} {{ $row->clave ?? 'S/N' }}
@php $j=0 @endphp @foreach($programas as $row) @php $programa = \App\Programa::where('id',$row->id)->first(); @endphp @php $j++; @endphp @endforeach @endsection