File "DomainEnvironmentRequest-20250317012849.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Http/Requests/DomainEnvironmentRequest-20250317012849.php
File size: 513 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class DomainEnvironmentRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     */
    public function rules(): array
    {
        return [
            'app_domain' => [
                'required',
            ],
        ];
    }
}