@extends('layouts.frontendapp') @section('title', config('app.name')) @section('meta') @endsection @section('content')
Back
@if($company->banner && $company->banner->file_path)
@endif
@if(!empty($company->logo) && !empty($company->logo->file_path))
{{ $company->name ?? 'Company Logo' }}
@endif

{{ $company->name ?? 'N/A' }}

@if($company->is_sponsor == 1 && !empty($company->type)) {{ ucfirst(str_replace('-', ' ', $company->type)) }} @endif

Bio

{{ $company->description ?? 'N/A' }}

Email

{{ $company->email ?? 'N/A' }}

Phone

{{ $company->phone ?? 'N/A' }}

Sponsor

{{ $company->name ?? 'N/A' }}

Website

@if(!empty($company->website))

{{ $company->website }}

@endif

Location

{{ $company->location ?? 'N/A' }}

Social

LinkedIn

@if(!empty($company->linkedin)) {{ $company->linkedin }} @else N/A @endif

Facebook

@if(!empty($company->facebook)) {{ $company->facebook }} @else N/A @endif

Twitter

@if(!empty($company->twitter)) {{ $company->twitter }} @else N/A @endif

Instagram

@if(!empty($company->instagram)) {{ $company->instagram }} @else N/A @endif

@if(!empty($sessions))
Upcoming Sessions
@forelse($sessions as $session)
{{ $session->title ?? 'Untitled Session' }}
{{ \Carbon\Carbon::parse($session->start_time)->format('M d, Y h:i A') }} {{ $session->location ?? '' }}
@empty
No sessions available
@endforelse
@endif @if($event)
{{ $event->title ?? 'Event' }}
@if(!empty($event->photo) && $event->photo->file_path) Event @else Event @endif

{{ $event->location ?? '' }}

{{ $event->description ?? '' }}

@endif
@endsection