@vite(['resources/css/app.css', 'resources/js/app.js']) @include('admin.partials.nav')

CoreLife Admin

Programmes

Manage shared programme details (name, category, poster) that group individual runs and dates.

@if ($search !== '' || $status !== '' || $category !== '') Clear @endif
+ New programme
@if (session('status'))
{{ session('status') }}
@endif @if ($programmes->isEmpty())
No programmes yet. Click New programme to add your first template.
@else
@foreach ($programmes as $programme) @endforeach
Order Programme Default info Runs Status Actions
{{ $programme->display_order }}
@if ($programme->poster_image)
{{ $programme->name }} poster
@endif
{{ $programme->name }}
@if ($programme->category)
{{ $programme->category }}
@endif @if ($programme->summary)
{{ $programme->summary }}
@endif
@if (! is_null($programme->default_price))
Price: RM {{ number_format($programme->default_price, 2) }} per pax
@endif @if (! is_null($programme->cpd_points))
CPD: {{ $programme->cpd_points }} point{{ $programme->cpd_points === 1 ? '' : 's' }}
@endif @if ($programme->default_delivery_mode)
Mode: {{ $programme->default_delivery_mode }}
@endif @if ($programme->default_location)
Venue: {{ $programme->default_location }}
@endif
{{ $programme->runs_count }} run{{ $programme->runs_count === 1 ? '' : 's' }}
@if ($programme->is_active) Active @else Hidden @endif
Edit
@csrf @method('DELETE')
@endif
@include('admin.partials.footer')