@extends('layouts.main') @section('pageTitle', '開放進場名單') @section('content')

如果有建立並且啟用"開放進場名單"內之車號規則
此時可以進場的車輛只有以下四種: 管理車、月租車、白名單、開放進場名單
※ 其它的車輛都禁止入場

車號規則
{{ __('parking.vehicle_type') }}
是否啟用
@if (auth()->user()->can('allowEntryList.destroyBatch')) @endif @if (auth()->user()->can('allowEntryList.edit')) @endif @if (auth()->user()->can('allowEntryList.destroy')) @endif
車號規則 車種 是否啟用修改刪除備註
@can('allowEntryList.create') 新增名單 @endcan @can('allowEntryList.destroyBatch') 批次刪除 @endcan
@endsection @section('js') @endsection