Skip to content

Commit

Permalink
Fix some breadcrumbs on admin pages
Browse files Browse the repository at this point in the history
  • Loading branch information
preimpression authored Feb 17, 2025
1 parent 83f4f9f commit 062291c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/admin/users/user_ban.blade.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@extends('admin.layout')

@section('admin-title')
User: {{ $user->name }}
Ban User: {{ $user->name }}
@endsection

@section('admin-content')
{!! breadcrumbs(['Admin Panel' => 'admin', 'User Index' => 'admin/users', $user->name => 'admin/users/' . $user->name . '/edit', 'Account Updates' => 'admin/users/' . $user->name . '/updates']) !!}
{!! breadcrumbs(['Admin Panel' => 'admin', 'User Index' => 'admin/users', $user->name => 'admin/users/' . $user->name . '/edit', 'Ban User' => 'admin/users/' . $user->name . '/ban']) !!}

<h1>User: {!! $user->displayName !!}</h1>
<ul class="nav nav-tabs mb-3">
Expand Down

0 comments on commit 062291c

Please sign in to comment.