How to call model in blade laravel

Created at 21-Sep-2021 , By samar

How to call model in blade laravel

Good day, guys. In this post, we’ll look at how to solve the "How to call model in blade laravel" programming puzzle.

You can call the model method in the laravel blade file. You have to define the function with static property and you can call this function from laravel blade file
  • Define static function in User model and call in laravel blade

    //Static function in User model
    //app\Models\User.php
    public static function getUserNameById($id){
        return User::where('id', $id)->pluck('name')->first();
    }
    
    //Call method in laravel view
    //resources\views\<home>.blade.php
    {{ App\Models\User::getUserNameByID(1) }}
    
    Output :
     
    Mr. Ian Conn

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.