Categories

Friday, April 19, 2024
#919814419350 therichposts@gmail.com
Laravel

How laravel abort_if() helper throws custom text for an exception?

Laravel 7.2 routing with route group auth guard check with prefix

laravel abort_if() helper throws custom text for an exception

Hello to all, welcome to therichpost.com. In this post, I will tell you, How laravel abort_if() helper throws custom text for an exception? Laravel is one of the top php mvc framework

Laravel has so many good helper functions and abort_if() function is one of them because I with this we can give custom text for an exception.

Here is am going to tell you, how to use abort_if() function in laravel controllers:

Normally we do abort check in controller:

public function index()
{
    if (! Auth::user()->isAdmin()) {
        abort(403, 'Sorry, you are not an admin');
    }
}

 But now, with abort_if(), you can do in your controller:

public function index()
{
    abort_if(! Auth::user()->isAdmin(), 403, 'Sorry, you are not an admin');
}

 There are so many code tricks in laravel and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com

 
therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.