short-url/app/Http/Middleware/TrustHosts.php
Supan Adit Pratama b2e434483d first commit
2020-07-01 15:57:45 +07:00

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