1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace App\Http\Middleware;
- use App\Models\UsersLog;
- use Carbon\Carbon;
- use Closure;
- use Illuminate\Contracts\Auth\Factory as Auth;
- use Illuminate\Database\Eloquent\Model;
- use Jenssegers\Agent\Facades\Agent;
- use Zhuzhichao\IpLocationZh\Ip;
- use Illuminate\Support\Facades\Log;
- class RequestLogMiddleware
- {
-
- protected $auth;
-
- public function __construct(Auth $auth)
- {
- $this->auth = $auth;
- }
-
- public function handle($request, Closure $next)
- {
- return $next($request);
- }
- }
|