PHP code example of rizqimilanisti / laravelminifier

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

    

rizqimilanisti / laravelminifier example snippets



// file : app/Http/Karnel.php

protected $middleware = [
    ....
    \rizqimilanisti\LaravelMinifier\Middleware\MinifyHtml::class,         // middleware untuk minify html
    \rizqimilanisti\LaravelMinifier\Middleware\MinifyCss::class,         // middleware untuk minify css style
    \rizqimilanisti\LaravelMinifier\Middleware\MinifyJavascript::class, // middleware untuk minify kode javascript
];
sh
php artisan vendor:publish --provider="rizqimilanisti\LaravelMinifier\MinifierServiceProvider"