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

Laravel 7.2 routing with route group auth guard check with prefix

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

 

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

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