kenken999/php
0
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 