first change

This commit is contained in:
2025-07-27 17:40:56 +05:45
commit f8b9a6725b
3152 changed files with 229528 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
@extends('layouts.app')
@section('content')
<div class="container-fluid">
<x-dashboard.breadcumb :title="$title" />
<div class="mb-1 text-end">
@can('event.create')
<a href="{{ route('event.create') }}" class="btn btn-primary btn-sm waves-effect waves-light"><i
class="ri-add-fill me-1 align-bottom"></i> Create</a>
@endcan
</div>
<div class="card">
<div class="card-body">
@php
$columns = [
[
'title' => 'SN',
'data' => 'DT_RowIndex',
'name' => 'DT_RowIndex',
'orderable' => false,
'searchable' => false,
],
['title' => 'Title', 'data' => 'title', 'name' => 'title'],
['title' => 'Type', 'data' => 'type', 'name' => 'type'],
['title' => 'Date', 'data' => 'date', 'name' => 'date'],
['title' => 'Location', 'data' => 'location', 'name' => 'location'],
['title' => 'Status', 'data' => 'status', 'name' => 'status'],
['title' => 'Action', 'data' => 'action', 'orderable' => false, 'searchable' => false],
];
@endphp
<x-data-table-script :route="route('event.index')" :columns="$columns" />
</div>
</div>
</div>
@endsection