@extends('layouts/eims_layout') @section('title', '| ' . $data['pageTitle']) @section('content')
{{-- --}}    
{{ $data['pageTitle'] }} List
{!! Form::open([ 'url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'courseClassRoutineForm', ]) !!} @php $options = ['' => 'Select any']; $searchElements = [ // ['element' => 'program_id'], ['element' => 'fillSessionId'], ]; // Conditionally add 'faculty_id' for 'UNV' companyType at the beginning if ($data['companyType'] == 'UNV') { array_unshift($searchElements, ['element' => 'fillFacultyId']); // Adds 'faculty_id' at the beginning } @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements]) {!! Form::close() !!}
@php $company = $data['companyDetails'];@endphp {{-- make the image vertically and horizontally center inside this div --}}
{{ $company->name }}

{{ $company->name }}

Address: {{ $company->address }}
{{ $company->phone ? "Phone: $company->phone" : null }} {{ $company->telephone ? ', Telephone: ' . $company->telephone : null }}
Email: {{ $company->email }}
Web: {{ $company->website }}

Academic Calendar {{ $data['actualYear'] }}



@endsection