CoolFace
Apppublic

kenken999/php

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
TrustHosts.php21 linesDownload Raw Back to Middleware
1<?php2 3namespace App\Http\Middleware;4 5use Illuminate\Http\Middleware\TrustHosts as Middleware;6 7class TrustHosts extends Middleware8{9    /**10     * Get the host patterns that should be trusted.11     *12     * @return array13     */14    public function hosts()15    {16        return [17            $this->allSubdomainsOfApplicationUrl(),18        ];19    }20}21