"use client"; import { createHospitalityListPage } from "@/modules/hospitality/components/HospitalityListCrudPage"; import { hospitalityApi } from "@/modules/hospitality/services/hospitality-api"; export const BundlesPage = createHospitalityListPage({ title: "بسته‌های فعال", breadcrumb: "بسته‌های فعال", resourceKey: "tenantBundles", bundleFeature: null, permission: "hospitality.view", api: hospitalityApi.tenantBundles, columns: [ { key: "code", header: "کد" }, { key: "name", header: "نام" }, { key: "status", header: "وضعیت", type: "status" }, { key: "created_at", header: "ایجاد", type: "datetime" }, ], createFields: [ { name: "code", label: "کد", required: true }, { name: "name", label: "نام", required: true }, ], }); export default BundlesPage;