@extends('layouts.frontend.master') @section('title') {{ __('UNIGUIDE | e-Learning website') }} @endsection @push('css') @endpush @section('content')
{{-- uni8 --}} uni8

About {{ $university->name }} University

{!! $university->description !!}

@if ($university->universityDegrees()->count() != 0)

{{ __('Programs') }}

    @foreach ($university->universityDegrees()->get() as $universityDegree) @if ($loop->index == 0)
  • {{ $universityDegree->degree->name }}
  • @else
  • {{ $universityDegree->degree->name }}
  • @endif @endforeach
@foreach ($university->universityDegrees()->get() as $universityDegree) @if ($loop->index == 0)
@foreach ($universityDegree->universityColleges()->get() as $universityCollege)
{{ $universityCollege->college->name }}{{ $universityCollege->college->name }}
@foreach ($universityCollege->universityPrograms()->get() as $universityProgram)
{{ $universityProgram->academicSpecialization->name }}
{{ $universityProgram->year_number }} years
country{{ $universityProgram->academicLanguage->name }}
    @foreach ($universityProgram->universityProgramPrices()->get() as $universityProgramPrice)
  • {{ $loop->index + 1 }}st Year {{ $universityProgramPrice->price_after_price }} $ {{ $universityProgramPrice->price }}$/ year
  • @endforeach
@endforeach @endforeach
@else
@foreach ($universityDegree->universityColleges()->get() as $universityCollege)
{{ $universityCollege->college->name }}{{ $universityCollege->college->name }}
@foreach ($universityCollege->universityPrograms()->get() as $universityProgram)
{{ $universityProgram->academicSpecialization->name }}
{{ $universityProgram->year_number }} years
country{{ $universityProgram->academicLanguage->name }}
    @foreach ($universityProgram->universityProgramPrices()->get() as $universityProgramPrice)
  • {{ $loop->index + 1 }}st Year {{ $universityProgramPrice->price_after_price }} $ {{ $universityProgramPrice->price }}$/ year
  • @endforeach
@endforeach @endforeach
@endif @endforeach
@endif @if ($university->Dormitories()->count() != 0)

Dormitories

@foreach ($university->Dormitories()->get() as $dormitory) @endforeach
{{__('Room Name')}} {{__('Capacity')}} {{__('Gender')}} {{__('Cost')}}
{{ $dormitory->room_name }} {{ $dormitory->capacity }} {{ $dormitory->gender }} USD {{ $dormitory->cost }}/month
@endif @if ($university->campus)

{{__('Campuses of Ain-Shams University and the available specializations')}}:

{!! $university->campus !!}
@endif @if ($university->confessions)

{{__('Confessions')}} 

{!! $university->confessions !!}
@endif
{{__('Categories')}} :
{{__('Are you ready for the next big event now in your life?')}} {{__('Register now and save your time')}} {{__('Register Now')}}
@push('scripts') @endpush @endsection