PHP code example of novius / laravel-media-toolbox

1. Go to this page and download the library: Download novius/laravel-media-toolbox 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/ */

    

novius / laravel-media-toolbox example snippets


// in 'aliases' => [ ... ]
'Medt' => Novius\MediaToolbox\Support\MediaToolbox::class,
sh
php artisan vendor:publish --provider="Novius\MediaToolbox\MediaToolboxServiceProvider" --tag="migrations"
php artisan migrate
sh
php artisan vendor:publish --provider="Novius\MediaToolbox\MediaToolboxServiceProvider"
sh
php artisan cache:clear

protected function schedule(Schedule $schedule)
{
    $schedule->command('media-toolbox:purge-expired')
        ->daily();
}