Skip to content

Instantly share code, notes, and snippets.

@imunisasi
imunisasi / filters.php
Created May 27, 2020 06:17 — forked from garagesocial/filters.php
Laravel Filter Helper - Compress HTML Output & Strip Comments
<?php
### --- Snip --- ###
App::after(function($request, $response)
{
// HTML Minification
if(App::Environment() != 'local')
{
if($response instanceof Illuminate\Http\Response)