PHP code example of akira / filament-tool-kit

1. Go to this page and download the library: Download akira/filament-tool-kit 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/ */

    

akira / filament-tool-kit example snippets


return [
    'date_format' => 'd-m-Y',
    'time_format' => 'H:i:s',
    'date_time_format' => 'd-m-Y H:i:s',
    'date_time_format_without_seconds' => 'd-m-Y H:i',
];

IdInput::make() // for input form
IdColumn::make() // for table column
IdEntry::make() // for infolist entry
bash
php artisan vendor:publish --tag="filament-tool-kit-translations"
bash
php artisan vendor:publish --tag="filament-tool-kit-config"