2024-10-09 10:16:34 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
2025-01-14 12:07:59 -08:00
|
|
|
|
|
|
|
use App\Models\Labels\Label;
|
2024-10-09 10:16:34 -07:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
use Illuminate\Support\Facades\Gate;
|
2025-01-14 12:07:59 -08:00
|
|
|
use Illuminate\Validation\Rule;
|
2024-10-09 10:16:34 -07:00
|
|
|
|
|
|
|
class StoreLabelSettings extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
return Gate::allows('superuser');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
2025-01-14 12:07:59 -08:00
|
|
|
$names = Label::find()?->map(function ($label) {
|
|
|
|
return $label->getName();
|
|
|
|
})->values()->toArray();
|
|
|
|
|
2024-10-09 10:16:34 -07:00
|
|
|
return [
|
|
|
|
'labels_per_page' => 'numeric',
|
|
|
|
'labels_width' => 'numeric',
|
|
|
|
'labels_height' => 'numeric',
|
|
|
|
'labels_pmargin_left' => 'numeric|nullable',
|
|
|
|
'labels_pmargin_right' => 'numeric|nullable',
|
|
|
|
'labels_pmargin_top' => 'numeric|nullable',
|
|
|
|
'labels_pmargin_bottom' => 'numeric|nullable',
|
|
|
|
'labels_display_bgutter' => 'numeric|nullable',
|
|
|
|
'labels_display_sgutter' => 'numeric|nullable',
|
|
|
|
'labels_fontsize' => 'numeric|min:5',
|
|
|
|
'labels_pagewidth' => 'numeric|nullable',
|
|
|
|
'labels_pageheight' => 'numeric|nullable',
|
|
|
|
'qr_text' => 'max:31|nullable',
|
2025-01-14 12:07:59 -08:00
|
|
|
'label2_template' => [
|
|
|
|
'required',
|
|
|
|
Rule::in($names),
|
|
|
|
],
|
2024-10-09 10:16:34 -07:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|