How to implement this syntax of Laravel below inside a Vue.js component?
@if(!Auth::guest())
@if(Auth::user()->id === $post->user->id)
<a href=#>edit</a>
@endif
@endif
How to implement this syntax of Laravel below inside a Vue.js component?
@if(!Auth::guest())
@if(Auth::user()->id === $post->user->id)
<a href=#>edit</a>
@endif
@endif