@php
/** @var $getData */
$title = $getData->title;
$text = $getData->text;
$identifier = $getData->slug;
$created_at = $getData->created_at;
$updated_at = $getData->updated_at;
$perex = $getData->perex;
@endphp
@extends('themes.'.config('smartekcms.themes.frontend').'.app', array(
'title' => $title,
'meta_description'=>Illuminate\Support\Str::limit(strip_tags(htmlspecialchars_decode( $perex ??= $text )),156),
'perex' => $perex,
'cover_image' => $coverImage,
'identifier' => $identifier,
'keywords' => trans('front.corporate.corporate'),
'slug' => $identifier,
'model_type' => 'corporate',
))
@section('head')
@endsection
@section('content')
{{ $getData->title }}
{!! $getData->text !!}
@endsection
@section('js')
@parent
@endsection