PHP code example of mydnic / volet-feature-board

1. Go to this page and download the library: Download mydnic/volet-feature-board library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mydnic / volet-feature-board example snippets


 $volet->register(
     (new VoletFeatureBoard())
         ->addCategory(
             slug: 'idea',
             name: 'Idea',
             icon: 'https://api.iconify.design/lucide:lightbulb.svg?color=%23888888'
         )
         ->addCategory(
             slug: 'issue',
             name: 'Issue',
             icon: 'https://api.iconify.design/lucide:wrench.svg?color=%23888888'
         )
 );
bash
php artisan vendor:publish --tag="volet-feature-board-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="volet-feature-board-assets" --force