@extends('admin.layout') @section('content')

Activities

Manage community activities and events

Create Activity
@if(session('success'))
{{ session('success') }}
@endif
@forelse ($activities as $activity) @empty @endforelse
Name Location Date Time Category Actions
{{ $activity->name }} @if($activity->location)
{{ $activity->location }}
@else No location @endif
{{ $activity->date ?? '-' }} {{ $activity->time ?? '-' }} {{ $activity->category->name }}
{{-- Edit Button --}} Edit {{-- Delete Button --}}
@csrf @method('DELETE')

No activities found

Get started by creating your first activity

@endsection