@extends('layouts.app') @section('page_title', 'Promotions') @section('content')
@if (session('success')) @endif @if (session('error')) @endif @include('components.promotion-component', [ 'pageTitle' => 'Promotions', 'data' => $promotions ?? [], 'columns' => [ ['name' => 'Title', 'key' => 'title', 'sortable' => true], ['name' => 'Type', 'key' => 'type', 'sortable' => true], ['name' => 'Start Date', 'key' => 'startDate', 'sortable' => true], ['name' => 'End Date', 'key' => 'endDate', 'sortable' => true], ['name' => 'Status', 'key' => 'status', 'sortable' => true] ], 'actions' => ['edit', 'view', 'delete'], 'showAddButton' => true, 'addButtonUrl' => route('promotions.create'), 'showCheckboxes' => true, 'showBatchDelete' => true, 'showEditModal' => false, 'showViewModal' => false, 'currentPage' => $currentPage ?? 1, 'lastPage' => $lastPage ?? 1, 'total' => $total ?? 0, ])

No promotions found.

@endsection