Initial Laravel Base

This commit is contained in:
Deon George
2019-05-14 17:52:49 +10:00
parent 95411c05e1
commit ed7087c802
85 changed files with 13433 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Http\Request;
use Fideloper\Proxy\TrustProxies as Middleware;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array
*/
protected $proxies;
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}