Как перенаправить на другую страницу от Laravel Blade
@if(Auth::user()->role_id == 1)
{{ 'Page' }}
@else
<script>window.location = "/dashboard";</script>
@endif
Important Iguana