This commit is contained in:
ericli1018
2025-06-13 12:24:35 +08:00
parent 1caae33c43
commit 6dfe3e0677
74 changed files with 1497 additions and 253 deletions

View File

@ -1,19 +1,19 @@
@extends('layouts.heading-page')
@section('title')
News -
Event -
@endsection
@section('seo_keywords')
{{ $dataRow->seo_keyword }}
{{ $dataRow->seo_keyword }}
@endsection
@section('seo_description')
{{ $dataRow->seo_description }}
{{ $dataRow->seo_description }}
@endsection
@section('css')
<link href="assets/css/page.css" rel="stylesheet"/>
<link href="/assets/css/page.css" rel="stylesheet"/>
@endsection
@section('breadcrumbs')
@ -30,9 +30,9 @@
<div class="news-info">
<h3 class="news-detail-title">{{ $dataRow->title }}</h3>
<ul>
<li><span>Date: </span>{{ date('Y-m-d', strtotime($dataRow->post_at)) }}</li>
<li><span>Date: </span>{{ date('Y-m-d', strtotime($dataRow->event_at)) }}</li>
<li><span>Venue: </span>{{ $dataRow->venue }}</li>
<li><span>Contact Us: </span>{{ $dataRow->contact }}</li>
<li><span>Contact: </span>{{ $dataRow->contact }}</li>
</ul>
</div>
<div class="news-detail-content img-style video-iframe">
@ -52,7 +52,9 @@
}
}
@endphp
<!--
<img src="{{ $img_src }}" alt="">
-->
{!! $dataRow->body !!}
</div>
</section>