1- # : package_description
1+ # Add kanban boards to your Filament pages
22
3- [ ![ 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 )
4- [ ![ GitHub Tests Action Status] ( https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug /run-tests.yml?branch=main&label=tests&style=flat-square )] ( https://github.com/:vendor_slug/:package_slug /actions?query=workflow%3Arun-tests+branch%3Amain )
5- [ ![ GitHub Code Style Action Status] ( https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug /fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square )] ( https://github.com/:vendor_slug/:package_slug /actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain )
6- [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/:vendor_slug/:package_slug .svg?style=flat-square )] ( https://packagist.org/packages/:vendor_slug/:package_slug )
3+ [ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/mokhosh/filament-kanban .svg?style=flat-square )] ( https://packagist.org/packages/mokhosh/filament-kanban )
4+ [ ![ GitHub Tests Action Status] ( https://img.shields.io/github/actions/workflow/status/mokhosh/filament-kanban /run-tests.yml?branch=main&label=tests&style=flat-square )] ( https://github.com/mokhosh/filament-kanban /actions?query=workflow%3Arun-tests+branch%3Amain )
5+ [ ![ GitHub Code Style Action Status] ( https://img.shields.io/github/actions/workflow/status/mokhosh/filament-kanban /fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square )] ( https://github.com/mokhosh/filament-kanban /actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain )
6+ [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/mokhosh/filament-kanban .svg?style=flat-square )] ( https://packagist.org/packages/mokhosh/filament-kanban )
77
8- <!-- delete-->
9- ---
10- This repo can be used to scaffold a Filament plugin. Follow these steps to get started:
118
12- 1 . Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
13- 2 . Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
14- 3 . Make something great!
15- ---
16- <!-- /delete-->
179
1810This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
1911
@@ -22,26 +14,26 @@ This is where your description should go. Limit it to a paragraph or two. Consid
2214You can install the package via composer:
2315
2416``` bash
25- composer require :vendor_slug/:package_slug
17+ composer require mokhosh/filament-kanban
2618```
2719
2820You can publish and run the migrations with:
2921
3022``` bash
31- php artisan vendor:publish --tag=" :package_slug -migrations"
23+ php artisan vendor:publish --tag=" filament-kanban -migrations"
3224php artisan migrate
3325```
3426
3527You can publish the config file with:
3628
3729``` bash
38- php artisan vendor:publish --tag=" :package_slug -config"
30+ php artisan vendor:publish --tag=" filament-kanban -config"
3931```
4032
4133Optionally, you can publish the views using
4234
4335``` bash
44- php artisan vendor:publish --tag=" :package_slug -views"
36+ php artisan vendor:publish --tag=" filament-kanban -views"
4537```
4638
4739This is the contents of the published config file:
@@ -54,8 +46,8 @@ return [
5446## Usage
5547
5648``` php
57- $variable = new VendorName\Skeleton ();
58- echo $variable ->echoPhrase('Hello, VendorName !');
49+ $filamentKanban = new Mokhosh\FilamentKanban ();
50+ echo $filamentKanban ->echoPhrase('Hello, Mokhosh !');
5951```
6052
6153## Testing
@@ -78,7 +70,7 @@ Please review [our security policy](../../security/policy) on how to report secu
7870
7971## Credits
8072
81- - [ : author_name ] ( https://github.com/:author_username )
73+ - [ Mo Khosh ] ( https://github.com/mokhosh )
8274- [ All Contributors] ( ../../contributors )
8375
8476## License
0 commit comments