How to Get Current Controller Name in View Laravel?
If you require to get current controller name in your view file or in your middleware or your serviceprovider etc. you can get your controller details from current route like UserController, HomeController ect. you can also get full path of controller file.
you can simple get current controller name in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 project.
Laravel getAction() through we can get whole array of current route details, in this example i get current controller in my auth middleware, if you require on your view file or other place then you can simply get.
So, let's see example how you can get controller name in auth middleware.
Example: app/Http/Middleware/Authenticate.php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth;
class Authenticate
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @return mixed
*/
public function handle($request, Closure $next, $guard = null)
{
$routeArray = app('request')->route()->getAction();
$controllerAction = class_basename($routeArray['controller']);
list($controller, $action) = explode('@', $controllerAction);
print_r($controller);
exit;
if (Auth::guard($guard)->guest()) {
if ($request->ajax() || $request->wantsJson()) {
return response('Unauthorized.', 401);
} else {
return redirect()->guest('login');
}
}
return $next($request);
}
}
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Current Full URL in Laravel 10?
- Laravel 10 Get Current Logged in User Data Example
- Laravel Migration Default Value Current Timestamp Example
- How to Pass Data from Controller to View in Laravel?
- Laravel Route Pass Multiple Parameters Example
- How to Get All Routes in Laravel?
- How to use Carbon in Laravel Blade or Controller File?
- How to Call Controller Function in Blade Laravel?
- Laravel Redirect to Route from Controller Example
- Laravel 9 Get Current User Location From IP Address
- How to Get All Session Data in Laravel?
- How to Get Current URL in Laravel?
- How to Get Current Route Name in Laravel?
- How to Get Last Inserted Id in Laravel?