Newer
Older
nuxt-laravel-test / back / app / Http / Middleware / TrustHosts.php
@shichidoyui shichidoyui on 31 Jul 2023 379 bytes add: first commit
<?php

namespace App\Http\Middleware;

use Illuminate\Http\Middleware\TrustHosts as Middleware;

class TrustHosts extends Middleware
{
    /**
     * Get the host patterns that should be trusted.
     *
     * @return array<int, string|null>
     */
    public function hosts(): array
    {
        return [
            $this->allSubdomainsOfApplicationUrl(),
        ];
    }
}