@extends('layouts.app') @section('title') Program Structure @endsection @section('content')
@if (session('success')) @elseif(session('error')) @endif
@if (count($academic_paths) == 0) @else
Program Structures
@foreach ($program_struct as $index => $program_structs) @endforeach
# Program Structure Name Action
{{ $index + 1 }} {{ $program_structs->program_structure_name }}
Create Program Structure
  • assistant_photoAction
  • printAnother action
  • favoriteSomething else here
@error('program_structure_name')
{{ $message }}
@enderror
@error('academic_path_id')
The academic path field is required
@enderror
@endif
@endsection