Home > Article > Backend Development > How to parse the value of vueJs in laravel blade
<code> <a class="commented-user">{{\App\User::find(10)->name}}</a> </code>
If 10 is like this, I think it is through a method like @{{ user.id }} (@{{user.id}}The parsed result is 10)
And how to parse this in the laravel blade template
<code> <a class="commented-user">{{\App\User::find(10)->name}}</a> </code>
If 10 is like this, I think it is through a method like @{{ user.id }} (@{{user.id}}It is 10 when parsed)
And how to parse this in the laravel blade template