芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/portpulselogistics.com/app/Http/Requests/NotificationsRequest.php
'nullable|in:0,1', ]; $validations = collect($validations)->map(function ($item, $key) { $new_item = $item; if ($key == 'site_name.' . app()->getLocale()) { $new_item = 'required|' . $new_item; } return $new_item; })->toArray(); return $validations; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } public function attributes() { return [ 'site_name.en' => __('blog::view.categories_table.en_name'), 'site_name.ar' => __('blog::view.categories_table.ar_name'), ]; } }