PHP code example of donia-shaker / media-library

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

    

donia-shaker / media-library example snippets


   default_image_format = 'webp' // <-- change this value
   

use DoniaShaker\MediaLibrary\MediaController;

$media_controller =  new MediaController();

$media_controller->saveImage($model, $model_id, $file, $format);

$media_controller->saveTempImage($model, $model_id, $file);

$media_controller->convertTempImage($model, $model_id, $media->id);

$media_controller->deleteTemp();

$media_controller->audio($model, $model_id, $file);

$media_controller->video($model, $model_id, $file);

$media_controller->uploadFile($model, $model_id, $file);

use DoniaShaker\MediaLibrary\Rules\SquareImageRule;

'file' => [.., new  SquareImageRule],
shell
   php artisan vendor:publish --tag=media-library-migrations
   php artisan vendor:publish --tag=media-library-config
   
shell
   php artisan migrate