@extends('frontend::layouts.app') @section('title', 'Conferences & Seminars - Activities - WBU - World Buddhist University') @php $activities = [ [ 'id' => '3', 'title' => 'International Conference on "Buddhist Economics and World Crises" at the Suan Dusit Place, Bangkok, Thailand', 'date' => '22 May 2016', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/3.jpg', ], [ 'id' => '5', 'title' => 'Mr.Charles G. Lief - President of Naropa University', 'date' => 'February 15, 2026', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/5.jpg', ], [ 'id' => '6', 'title' => 'International Conference for the Cooperation Among Buddhists in ASEAN Economic Community "Buddhist Studies in AEC" At College of Innovation, Thammasat University, Pattaya', 'date' => '11 July 2014', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/6.jpg', ], [ 'id' => '7', 'title' => 'The Seminar on Buddhist Studies in Australia" and the visits to Nan Tien University in NSW and Buddhist Discussion Centre(Upwey)Ltd., in Melbourne during ', 'date' => 'December 5-9,2013', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/7.jpg', ], [ 'id' => '8', 'title' => 'International Conference to Commemorate The Centenary of the Thai Supreme Patriarch Somdej Phra Ñañasangvara "Buddhist Studies in Contemporary World" At Viengtai Hotel, Bangkok', 'date' => '14 December 2013', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/8.jpg', ], [ 'id' => '9', 'title' => 'The World Buddhist University in conjunction with the World Fellowship of Buddhists and the Pipphalivan Mindfulness Center (PMC) organized the International Seminar, "Life Management with Meditation :Experience and Success", held consecutively during August 10th – 12th B.E. 2556 (2013) in Bangkok and Rayong, Thailand. ', 'date' => 'August 10th – 12th B.E. 2556 (2013) ', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/9.jpg', ], [ 'id' => '12', 'title' => 'Mr. Brain White, the president of Buddhist Council of New South Wales Inc. Australia paid a visit to the WBU Centre at Benjasiri Park, Bangkok.', 'date' => 'November 7th, B.E. 2555 (2012) ', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity/12.jpg', ], [ 'id' => '14', 'title' => 'Buddhist Youth Leadership Summit', 'date' => 'April 25, 2026', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity-conference.jpg', ], [ 'id' => '17', 'title' => 'Buddhist Ethics in Modern Society Conference', 'date' => 'May 20, 2026', 'tag' => 'Conferences & Seminars', 'tag_id' => 'conferences', 'image' => '/images/activity-philosophy.jpg', ], ]; $itemsPerPage = 12; $currentPage = (int) request()->query('page', 1); $totalPages = max(1, (int) ceil(count($activities) / $itemsPerPage)); $currentPage = max(1, min($currentPage, $totalPages)); $startIndex = ($currentPage - 1) * $itemsPerPage; $paginatedActivities = array_slice($activities, $startIndex, $itemsPerPage); @endphp @section('content')

Conferences & Seminars

@forelse($paginatedActivities as $activity) @include('frontend::components.activity-card', [ 'id' => $activity['id'], 'title' => $activity['title'], 'date' => $activity['date'], 'tag' => $activity['tag'], 'image' => $activity['image'], ]) @empty

No conferences & seminars found.

@endforelse
@if($totalPages > 1)
@php $prevUrl = url('/activities/conferences-seminars') . '?' . http_build_query([ 'page' => max(1, $currentPage - 1), ]); $nextUrl = url('/activities/conferences-seminars') . '?' . http_build_query([ 'page' => min($totalPages, $currentPage + 1), ]); @endphp Previous @for($page = 1; $page <= $totalPages; $page++) @php $pageUrl = url('/activities/conferences-seminars') . '?' . http_build_query([ 'page' => $page, ]); @endphp {{ $page }} @endfor Next
@endif
@endsection