I have this in my view
@if(auth.user.id == post.user_id)
<div class="all-edit">
<div class="post-body">
<a href="/posts/edit/{{ post.id }}">(Edit)</a>
</div>
</div>
@endif
When user that made the post click it, then it takes them to the edit post page. But users that did not create post visit the url it shows the edit post page. i want them to be redirected to the home page instead,