@extends('layouts/base_view') @section('title') {!! $variables['header_routes'] !!} @endsection @section('content') {{ $variables['judul'] }} @csrf Store * Pilih Store @foreach($variables['stores'] as $store) store_id ?? session('store_selected')) == $store->id ? 'selected' : '' }}> {{ $store->code }} - {{ $store->name }} @endforeach Kode * Kode unik untuk jadwal pengiriman (maks 50 karakter) id ? 'readonly' : '' }}> @if ($errors->has('code')) {{ $errors->first('code') }} @endif Distribution Center * DC akan difilter berdasarkan store yang dipilih Pilih DC @foreach($variables['dcs'] as $dc) dc_id ?? '') == $dc->id ? 'selected' : '' }}> {{ $dc->doctype }} - {{ $dc->name }} @endforeach Tipe Pengiriman * Pilih Tipe Pengiriman @foreach($variables['tipe_pengiriman_options'] as $tipe) tipe_pengiriman ?? '') == $tipe ? 'selected' : '' }}> {{ $tipe }} @endforeach Hari Pengiriman * Pilih Hari @foreach($variables['days'] as $code => $name) delivery_day ?? '') == $code ? 'selected' : '' }}> {{ $code }} - {{ $name }} @endforeach Shift * Pilih Shift shift ?? '') == '1' ? 'selected' : '' }}>Shift 1 shift ?? '') == '2' ? 'selected' : '' }}>Shift 2 @if ($errors->has('shift')) {{ $errors->first('shift') }} @endif Status * status ?? 'Aktif') == 'Aktif' ? 'selected' : '' }}>Aktif status ?? '') == 'Nonaktif' ? 'selected' : '' }}>Nonaktif Waktu Loading KP/DC * Format 24 jam (00:00 - 23:59) Waktu Tiba Di Store * Format 24 jam (00:00 - 23:59) Simpan Kembali @endsection