@extends('front.layoutwithout')
@section('title','Planes de estudios')
@section('sub-title')
@section('content')
| Plan de estudio |
|
@if($data['plans']->isNotEmpty())
@foreach($data['plans'] as $plan)
| {{$plan->name}} |
|
@endforeach
@else
|
No hay planes de estudio.
|
@endif
| Especialidades |
|
@if($data['specialities']->isNotEmpty())
@foreach($data['specialities'] as $specia)
| {{$specia->name}} |
|
@endforeach
@else
|
No hay especialidades.
|
@endif
@endsection
@push('css')
@endpush
@push('js')
@endpush