PHP code example of thethunderturner / filament-latex

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

    

thethunderturner / filament-latex example snippets


->plugins([
    // ...
    FilamentLatexPlugin::make(),
]);

FilamentLatexPlugin::make()
    ->resource('path/to/your/resource')
bash
php artisan filament-latex:install
bash
php artisan vendor:publish --tag="filament-latex-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="filament-latex-config"
bash
php artisan vendor:publish --tag="filament-latex-views"
js
export default {
    presets: [preset],
    content: [
        // ...
        './vendor/thethunderturner/filament-latex/{resources,src}/{views,}/**/*.{blade.php,php}',
    ],
}