Skip to content

Commit 3e30fe5

Browse files
authored
chore: remove breadcrumbs (#528)
1 parent 73b0995 commit 3e30fe5

File tree

13 files changed

+1
-107
lines changed

13 files changed

+1
-107
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@
126126
"spatie/laravel-permission": "Needed for nova permissions & roles",
127127
"vyuldashev/nova-permission": "Needed for nova permissions & roles"
128128
}
129-
}
129+
}

examples/commonmark.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,6 @@ This file contains basic examples and explains the parameters that can be used f
8585
| title | used for the "ARK <title>" navbar text | yes |
8686
| navigation | an array of `route`, `label` pairs for the navbar navigation options | yes |
8787

88-
### Breadcrumbs
89-
90-
> Note: this works best when using a breadcrumb section in your layout view to which you pass the breadcrumb itself on different pages
91-
92-
```php
93-
<x-ark-breadcrumbs :crumbs="[
94-
['route' => 'tokens', 'label' => trans('menus.dashboard')],
95-
['route' => 'tokens.welcome', 'label' => trans('menus.onboarding'), 'params' => [$token]],
96-
['route' => 'tokens.identity', 'label' => trans('menus.tokens.identity'), 'params' => [$token]],
97-
]" />
98-
```
99-
10088
### Sidebar Links
10189

10290
> Sidebar links that automatically change class when they correspond to the active route

examples/fortify.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,6 @@ This file contains basic examples and explains the parameters that can be used f
8585
| title | used for the "ARK <title>" navbar text | yes |
8686
| navigation | an array of `route`, `label` pairs for the navbar navigation options | yes |
8787

88-
### Breadcrumbs
89-
90-
> Note: this works best when using a breadcrumb section in your layout view to which you pass the breadcrumb itself on different pages
91-
92-
```php
93-
<x-ark-breadcrumbs :crumbs="[
94-
['route' => 'tokens', 'label' => trans('menus.dashboard')],
95-
['route' => 'tokens.welcome', 'label' => trans('menus.onboarding'), 'params' => [$token]],
96-
['route' => 'tokens.identity', 'label' => trans('menus.tokens.identity'), 'params' => [$token]],
97-
]" />
98-
```
99-
10088
### Sidebar Links
10189

10290
> Sidebar links that automatically change class when they correspond to the active route

examples/ui.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -373,18 +373,6 @@ public function imagesReordered(array $ids): void
373373
| title | used for the "ARK <title>" navbar text | yes |
374374
| navigation | an array of `route`, `label` pairs for the navbar navigation options | yes |
375375

376-
### Breadcrumbs
377-
378-
> Note: this works best when using a breadcrumb section in your layout view to which you pass the breadcrumb itself on different pages
379-
380-
```php
381-
<x-ark-breadcrumbs :crumbs="[
382-
['route' => 'tokens', 'label' => trans('menus.dashboard')],
383-
['route' => 'tokens.welcome', 'label' => trans('menus.onboarding'), 'params' => [$token]],
384-
['route' => 'tokens.identity', 'label' => trans('menus.tokens.identity'), 'params' => [$token]],
385-
]" />
386-
```
387-
388376
### Sidebar Links
389377

390378
> Sidebar links that automatically change class when they correspond to the active route

resources/views/auth/forgot-password.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title"/>
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'login', 'label' => trans('ui::menu.sign_in')],
12-
['label' => trans('ui::menu.password_reset_email')],
13-
]"/>
14-
@endsection
15-
169
@section('content')
1710
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.component-heading"/>
1811

resources/views/auth/login.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title"/>
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'home', 'label' => trans('ui::menu.home')],
12-
['label' => trans('ui::menu.sign_in')],
13-
]"/>
14-
@endsection
15-
169
@section('content')
1710
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.component-heading"/>
1811

resources/views/auth/register.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title" />
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'login', 'label' => trans('ui::menu.sign_in')],
12-
['label' => trans('ui::menu.sign_up')],
13-
]" />
14-
@endsection
15-
169
@section('content')
1710
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.component-heading" />
1811

resources/views/auth/reset-password.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title" />
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'login', 'label' => trans('ui::menu.sign_in')],
12-
['label' => trans('ui::menu.reset_password')],
13-
]" />
14-
@endsection
15-
169
@section('content')
1710
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.component-heading" />
1811

resources/views/auth/two-factor-challenge.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title" />
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'login', 'label' => trans('ui::menu.sign_in')],
12-
['label' => trans('ui::menu.2fa')],
13-
]" />
14-
@endsection
15-
169
@section('content')
1710
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.component-heading"/>
1811

resources/views/auth/verify-email.blade.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
<x-data-bag key="fortify-content" resolver="name" view="ark-fortify::components.page-title" />
77
@endsection
88

9-
@section('breadcrumbs')
10-
<x-ark-breadcrumbs :crumbs="[
11-
['route' => 'login', 'label' =>trans('ui::menu.sign_in')],
12-
['label' => trans('ui::menu.verify')],
13-
]" />
14-
@endsection
15-
169
@section('content')
1710
<livewire:auth.verify-email />
1811
@endsection

0 commit comments

Comments
 (0)