PHP code example of daun / laravel-latte

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

    

daun / laravel-latte example snippets


Route::get('/', function() {
    return view('home');
});

[
    // /resources/views/layouts/default.latte
    'default_layout' => 'layouts.default'
]

[
    'extensions' => [
        \App\View\Latte\MyExtension::class
    ]
]

use Daun\LaravelLatte\Facades\Latte;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        Latte::addFilter('plural', fn($str) => Str::plural($str));
    }
}

use Daun\LaravelLatte\Events\LatteEngineCreated;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    public function register()
    {
        Event::listen(function (LatteEngineCreated $event) {
            $event->engine->setAutoRefresh(true);
        });
    }
}
sh
php artisan vendor:publish --provider="Daun\LaravelLatte\ServiceProvider"