Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
20 righe
354 B
20 righe
354 B
<?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 |
|
*/ |
|
public function hosts() |
|
{ |
|
return [ |
|
$this->allSubdomainsOfApplicationUrl(), |
|
]; |
|
} |
|
}
|
|
|