@extends('layouts.generic') {{-- SEO, Schema & Share --}} @section('page_title', $company->name) @section('share_url', route('company.get', ['slug' => $slug])) @section('share_title', $company->name . '-' .getSetting('site.name')) @section('share_description', SEOSchemaHelper::getDescriptionExcerpt($company->description)) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('meta') {!! SEOSchemaHelper::organization($company) !!} @stop @section('styles') {!! Minify::stylesheet([ ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ ])->withFullUrl() !!} @stop @section('content')
@include('elements.message-alert',['classes'=>'pt-2 px-0 pb-4']) @include('elements.report-user-or-post',['reportStatuses' => GenericHelper::getReportTypes()])
@include('elements.company.company-details', ['company' => $company])

{{__('About')}}

{!! Purifier::clean($company->description) !!}
@if($companyJobs->count())

{{__('Active listings')}}

@foreach($companyJobs as $job) @include('elements.listings.job-listing-box',['job' => $job]) @endforeach
{{ $companyJobs->links() }}
@endif
@endsection