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,7 +1,7 @@
@extends('layouts.heading-page')
@section('title')
Events -
Events -
@endsection
@section('seo_keywords')
@ -11,7 +11,7 @@
@endsection
@section('css')
<link href="assets/css/page.css" rel="stylesheet"/>
<link href="/assets/css/page.css" rel="stylesheet"/>
@endsection
@section('breadcrumbs')
@ -53,9 +53,9 @@
<div class="post-body">
<h2><a href="/events/detail/{{ $row->id }}">{{ $row->title }}</a></h2>
<div class="post-text">
<p><span>Date: </span>{{ date('Y-m-d', strtotime($row->post_at)) }}</p>
<p><span>Date: </span>{{ date('Y-m-d', strtotime($row->event_at)) }}</p>
<p><span>Venue: </span>{{ $row->venue }}</p>
<p><span>Contact Us: </span>{{ $row->contact }}</p>
<p><span>Contact: </span>{{ $row->contact }}</p>
</div>
<div class="more"><a href="/events/detail/{{ $row->id }}">More</a></div>
</div>