1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-13 18:10:04 +01:00
2021-04-16 03:30:00 +04:30

21 lines
354 B
PHP
Executable File

<?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(),
];
}
}