@extends('website.layouts.app') @section('title', $company->name . ' – ' . config('website.brand')) @section('meta_description', $company->tagline ?: Str::limit(strip_tags($company->about ?? ''), 160)) @section('content') @php $cta = config('website.cta'); $brand = config('website.brand'); $social = $company->social_links ?? []; $highlights = $company->highlights ?? []; $profile = $company->profile ?? []; $stats = $profile['stats'] ?? []; $specialties = $profile['specialties'] ?? []; $whyUs = $profile['why_us'] ?? []; $faqs = $profile['faqs'] ?? []; $mission = $profile['mission'] ?? ''; $vision = $profile['vision'] ?? ''; $founded = $profile['founded_year'] ?? ''; $state = $profile['state'] ?? ''; $country = $profile['country'] ?? ''; $hours = $profile['working_hours'] ?? ''; $locationParts = array_filter([$company->city, $state, $country]); $aboutParagraphs = preg_split("/\n\s*\n/", trim((string) ($company->about ?? ''))) ?: []; $socialIcons = [ 'website' => 'fa-globe', 'facebook' => 'fa-facebook', 'instagram' => 'fa-instagram', 'youtube' => 'fa-youtube-play', 'linkedin' => 'fa-linkedin', 'twitter' => 'fa-twitter', 'telegram' => 'fa-paper-plane', ]; $authUser = auth()->user(); @endphp @if(session('success'))
{{ session('success') }}
@endif
coverUrl()) style="--ly-cp-cover:url('{{ $company->coverUrl() }}')" @endif>
← All institutes
@if($company->logoUrl()) {{ $company->name }} @else {{ $company->initials() }} @endif

Academy on {{ $brand }}

{{ $company->name }}

@if($company->tagline)

{{ $company->tagline }}

@endif
@if(!empty($locationParts)) {{ implode(', ', $locationParts) }} @endif @if($founded) Est. {{ $founded }} @endif {{ $courses->total() }} {{ Str::plural('course', $courses->total()) }} @if($hours) {{ $hours }} @endif
Browse Courses @if($company->website_url) Visit Website @endif Contact
@if(!empty($stats))
@foreach($stats as $stat)
{{ $stat['value'] }} {{ $stat['label'] }}
@endforeach
@endif

About the academy

Who we are

@forelse($aboutParagraphs as $para)

{{ $para }}

@empty

This academy is building its learning business on {{ $brand }}.

@endforelse @if(!empty($specialties))
@foreach($specialties as $item) {{ $item }} @endforeach
@endif
@if($mission || $vision)
@if($mission)

Mission

What drives us

{{ $mission }}

@endif @if($vision)

Vision

Where we’re headed

{{ $vision }}

@endif
@endif @if(!empty($whyUs))

Why learners choose us

Built for real outcomes

@foreach($whyUs as $item)

{{ $item['title'] }}

{{ $item['text'] }}

@endforeach
@endif @if(!empty($highlights))

Highlights

At a glance

    @foreach($highlights as $item)
  • {{ $item }}
  • @endforeach
@endif

Courses

Learn with {{ $company->name }}

Published programs created by this academy on {{ $brand }}.

@if($courses->count())
{{ $courses->links() }}
@else

No published courses yet

{{ $company->name }} has not published courses on their public profile.

@endif
@if($testimonials->count())

Testimonials

What learners say

Stories shared by students and parents about {{ $company->name }}.

@foreach($testimonials as $item)
@for($i=1;$i<=5;$i++)@endfor

“{{ $item->content }}”

@if($item->avatarUrl()) {{ $item->author_name }} @else {{ strtoupper(substr($item->author_name, 0, 1)) }} @endif
{{ $item->author_name }} @if($item->author_title){{ $item->author_title }}@endif
@endforeach
@endif

Reviews

Student reviews

@if($reviewCount) {{ $avgRating }}/5 average from {{ $reviewCount }} {{ Str::plural('review', $reviewCount) }}. @else Be the first to review {{ $company->name }}. @endif

@forelse($reviews as $review)
@for($i=1;$i<=5;$i++)@endfor

{{ $review->content }}

{{ $review->reviewer_name }} {{ optional($review->created_at)->format('M d, Y') }}
@empty

No reviews yet

Share your experience with this academy.

@endforelse

Write a review

Students and visitors can submit a review. It appears after academy approval.

@csrf
@if($gallery->count()) @endif @if($videos->count())

Videos

Watch & learn

Campus stories, intros, and learning highlights from {{ $company->name }}.

@foreach($videos as $video)

{{ $video->title }}

@if($video->description)

{{ $video->description }}

@endif
@endforeach
@endif @if($blogs->count())

Blogs

From the academy

Articles and updates published by {{ $company->name }}.

@endif @if($team->count())

Team

People behind the learning

Instructors and leaders shaping the {{ $company->name }} experience.

@foreach($team as $member)
@if($member->photoUrl()) {{ $member->name }} @else {{ strtoupper(substr($member->name, 0, 1)) }} @endif

{{ $member->name }}

@if($member->role)

{{ $member->role }}

@endif @if($member->bio)

{{ $member->bio }}

@endif
@endforeach
@endif @if(!empty($faqs))

FAQ

Common questions

Answers for learners exploring {{ $company->name }}.

@foreach($faqs as $i => $faq)
{{ $faq['q'] }}

{{ $faq['a'] }}

@endforeach
@endif

Contact

Get in touch

Reach {{ $company->name }} for admissions, partnerships, or course guidance.

    @if($company->email)
  • Email{{ $company->email }}
  • @endif @if($company->phone)
  • Phone{{ $company->phone }}
  • @endif @if($company->address)
  • Address{{ $company->address }}@if(!empty($locationParts)), {{ implode(', ', $locationParts) }}@endif
  • @endif @if($hours)
  • Working hours{{ $hours }}
  • @endif @if($company->website_url)
  • Website{{ $company->website_url }}
  • @endif
@if(!empty($social))
@foreach($social as $network => $url) {{ ucfirst($network) }} @endforeach
@endif

Send an enquiry

Ask about courses, admissions, or partnerships.

@include('website.companies.partials.enquiry-form')

Build your academy like {{ $company->name }}

Create your branded school, publish courses, and grow enrollments with {{ $brand }}.

@endsection @push('styles') @endpush @push('scripts') @endpush