23 lines
643 B
PHP
23 lines
643 B
PHP
@extends('layouts.site', [
|
|
'header' => 'partials.header-demo1',
|
|
'footer' => 'partials.footer',
|
|
])
|
|
|
|
@section('content')
|
|
@php
|
|
$historyItems = \App\Models\CompanyHistoryItem::active()->ordered()->get();
|
|
$heroSubtitle = $page
|
|
? ($page->translate('excerpt') ?: $page->excerpt)
|
|
: null;
|
|
@endphp
|
|
|
|
<x-company-history.hero
|
|
:subtitle="$heroSubtitle ?: __('company_history.hero_subtitle')"
|
|
cta-url="#company-history-timeline"
|
|
/>
|
|
|
|
<div id="company-history-timeline">
|
|
<x-company-history.timeline :items="$historyItems" :show-header="true" />
|
|
</div>
|
|
@endsection
|