Skip to content

Instantly share code, notes, and snippets.

@daun
daun / LatteProvider.php
Last active January 27, 2024 09:17
Integrate Latte into Laravel directly without using a package
<?php
namespace App\Providers;
use Illuminate\Contracts\View\Factory;
use Illuminate\Foundation\Application;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Latte\Engine;
use Latte\Macros\MacroSet;