akaunting/app/Http/Middleware/TrustHosts.php
Denis Duliçi 1ba8835a2d laravel 8
2020-10-14 17:07:59 +03:00

20 lines
353 B
PHP

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