1
+ ![ ] ( ./.github/laravel-breadcrumbs.png )
1
2
2
- [ < img src = " https://github-ads.s3.eu-central-1.amazonaws.com/support-ukraine.svg?t=1 " /> ] ( https://supportukrainenow.org )
3
+ # Quick and easy breadcrumbs for Laravel
3
4
4
- # : package_description
5
+ ** Note: ** This is very much a work in progress and should not be used on any live site.
5
6
6
- [ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square )] ( https://packagist.org/packages/:vendor_slug/:package_slug )
7
- [ ![ GitHub Tests Action Status] ( https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/run-tests?label=tests )] ( https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain )
8
- [ ![ GitHub Code Style Action Status] ( https://img.shields.io/github/workflow/status/:vendor_slug/:package_slug/Check%20&%20fix%20styling?label=code%20style )] ( https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain )
9
- [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square )] ( https://packagist.org/packages/:vendor_slug/:package_slug )
10
- <!-- delete-->
11
- ---
12
- This repo can be used to scaffold a Laravel package. Follow these steps to get started:
7
+ [ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/aelora/laravel-breadcrumbs.svg?style=flat-square )] ( https://packagist.org/packages/aelora/laravel-breadcrumbs )
8
+ [ ![ GitHub Tests Action Status] ( https://img.shields.io/github/workflow/status/aelora/laravel-breadcrumbs/run-tests?label=tests )] ( https://github.com/aelora/laravel-breadcrumbs/actions?query=workflow%3Arun-tests+branch%3Amain )
9
+ [ ![ GitHub Code Style Action Status] ( https://img.shields.io/github/workflow/status/aelora/laravel-breadcrumbs/Check%20&%20fix%20styling?label=code%20style )] ( https://github.com/aelora/laravel-breadcrumbs/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain )
10
+ [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/aelora/laravel-breadcrumbs.svg?style=flat-square )] ( https://packagist.org/packages/aelora/laravel-breadcrumbs )
13
11
14
- 1 . Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
15
- 2 . Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
16
- 3 . Have fun creating your package.
17
- 4 . If you need help creating a package, consider picking up our <a href =" https://laravelpackage.training " >Laravel Package Training</a > video course.
18
- ---
19
- <!-- /delete-->
20
12
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
21
13
22
14
## Support us
23
15
24
- [ <img src =" https://github-ads.s3.eu-central-1.amazonaws.com/:package_name .jpg?t=1 " width =" 419px " />] ( https://spatie.be/github-ad-click/:package_name )
16
+ [ <img src =" https://github-ads.s3.eu-central-1.amazonaws.com/laravel-breadcrumbs .jpg?t=1 " width =" 419px " />] ( https://spatie.be/github-ad-click/laravel-breadcrumbs )
25
17
26
18
We invest a lot of resources into creating [ best in class open source packages] ( https://spatie.be/open-source ) . You can support us by [ buying one of our paid products] ( https://spatie.be/open-source/support-us ) .
27
19
@@ -32,20 +24,13 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh
32
24
You can install the package via composer:
33
25
34
26
``` bash
35
- composer require :vendor_slug/:package_slug
36
- ```
37
-
38
- You can publish and run the migrations with:
39
-
40
- ``` bash
41
- php artisan vendor:publish --tag=" :package_slug-migrations"
42
- php artisan migrate
27
+ composer require aelora/laravel-breadcrumbs
43
28
```
44
29
45
30
You can publish the config file with:
46
31
47
32
``` bash
48
- php artisan vendor:publish --tag=" :package_slug -config"
33
+ php artisan vendor:publish --tag=" laravel-breadcrumbs -config"
49
34
```
50
35
51
36
This is the contents of the published config file:
@@ -58,14 +43,14 @@ return [
58
43
Optionally, you can publish the views using
59
44
60
45
``` bash
61
- php artisan vendor:publish --tag=" :package_slug -views"
46
+ php artisan vendor:publish --tag=" laravel-breadcrumbs -views"
62
47
```
63
48
64
49
## Usage
65
50
66
51
``` php
67
- $variable = new VendorName\Skeleton ();
68
- echo $variable ->echoPhrase('Hello, VendorName !');
52
+ $breadcrumbs = new Aelora\Breadcrumbs ();
53
+ echo $breadcrumbs ->echoPhrase('Hello, Aelora !');
69
54
```
70
55
71
56
## Testing
@@ -80,15 +65,15 @@ Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed re
80
65
81
66
## Contributing
82
67
83
- Please see [ CONTRIBUTING] ( https://github.com/:author_username /.github/blob/main/CONTRIBUTING.md ) for details.
68
+ Please see [ CONTRIBUTING] ( https://github.com/RyanNutt /.github/blob/main/CONTRIBUTING.md ) for details.
84
69
85
70
## Security Vulnerabilities
86
71
87
72
Please review [ our security policy] ( ../../security/policy ) on how to report security vulnerabilities.
88
73
89
74
## Credits
90
75
91
- - [ : author_name ] ( https://github.com/:author_username )
76
+ - [ Ryan Nutt ] ( https://github.com/RyanNutt )
92
77
- [ All Contributors] ( ../../contributors )
93
78
94
79
## License
0 commit comments