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

@ -15,7 +15,7 @@ class EventsController extends Controller
$dataRows = \App\Models\Event::where('is_front_show', '=', true)
->orderBy('post_at', 'desc')
->select('id', 'title', 'venue', 'contact', 'photos', 'post_at');
->select('id', 'title', 'venue', 'event_at', 'contact', 'photos', 'post_at');
return view('events', [
'dataRows' => $dataRows->skip($pageOffset)->take($perPageItems)->get(),