/
home
/
obinna
/
html
/
cravings
/
app
/
Http
/
Middleware
/
Upload File
HOME
<?php namespace App\Http\Middleware; use Closure; class OnlyAjax { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if (!$request->ajax()) { abort(404); } return $next($request); } }