Files
Nyan Lin Paing 5c215b4647
PHP Tests / php-tests (push) Failing after 3m20s
add admin noti email feat
2026-08-19 21:43:00 +07:00

35 lines
1.1 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Vehicle Option Toggles
|--------------------------------------------------------------------------
|
| Blunt on/off switches for Vehicle Options that have no real inventory
| tracking in v1 (see domain.md §2). Front Seat has no toggle — it is
| always selectable, only capped per-booking by the max below.
|
*/
'back_seat_enabled' => env('BOOKING_BACK_SEAT_ENABLED', true),
'whole_vehicle_enabled' => env('BOOKING_WHOLE_VEHICLE_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Front Seat Limit
|--------------------------------------------------------------------------
|
| The only inventory rule enforced in v1: max Front Seats a single
| booking may request.
|
*/
'front_seat_max_per_booking' => env('BOOKING_FRONT_SEAT_MAX_PER_BOOKING', 1),
// comma-separated list of admin emails to notify on booking events
'admin_emails' => explode(',', env('BOOKING_ADMIN_EMAILS', 'admin@example.com')),
];