@extends('layouts.app') @section('title', 'Institutes') @section('page-title', 'Institutes') @section('breadcrumb', 'Platform Admin / Institutes') @section('content')
@forelse($companies as $company) @empty @endforelse
Institute Owner Email Courses Visibility Created
@if($company->logoUrl()) @else {{ $company->initials() }} @endif
{{ $company->name }}
@if($company->city)
{{ $company->city }}
@endif
{{ $company->email ?: ($company->owner->email ?? '—') }} {{ number_format($company->courses_count) }} {{ $company->is_public ? 'Public' : 'Hidden' }} {{ optional($company->created_at)->format('M d, Y') }} View profile →
No institutes registered yet.
@if($companies->hasPages())
{{ $companies->links() }}
@endif
@endsection