@extends('admin.layouts.app') @section('title', 'System Settings') @section('content')

System Settings

General Settings
@csrf
Path to logo image
e.g., IDR, USD
e.g., Rp, $, €
Operational Hours
@csrf @php $days = [ 'monday' => 'Monday', 'tuesday' => 'Tuesday', 'wednesday' => 'Wednesday', 'thursday' => 'Thursday', 'friday' => 'Friday', 'saturday' => 'Saturday', 'sunday' => 'Sunday' ]; $operationalHours = $settings['operational_hours'] ?? []; @endphp @foreach($days as $key => $day)
{{ $day }}
index]['is_open'] ?? true) ? 'checked' : '' }}>
@endforeach
Note: Times are in 24-hour format. Set open/close times for each day.
Tax & Fees Settings
@csrf
%
Percentage of tax applied to orders
Rp
Fixed service fee per order
If checked, tax is included in menu prices. If unchecked, tax is added at checkout.
Important: Changing tax settings will affect all future orders. Existing orders will not be modified.
Payment Settings
@csrf
Time allowed for customers to upload payment proof
How cash payments are handled
Payment Methods
Payment methods are managed separately in Payment Methods section .
Notification Settings
@csrf
Email Notifications
Send email when new order is placed
Send email when payment is confirmed
Send email when order is ready for pickup/delivery
Admin Notifications
Alert admins about new orders
Alert when menu items are low in stock
Email notifications require proper email configuration in your .env file.
@push('scripts') @endpush @endsection