Jump to content

Creare una direttiva personalizzata su Blade


Askancy

Recommended Posts

  • Admin

Creare una direttiva personalizzata su Blade

Laravel-Banner.webp

 

Può capitare che spesso si utilizza del codice sporco sui blade, se questo codice viene usato spesso è conveniente creare una direttiva personalizzata per i blade.

Mettiamo caso di voler sostituire il tag `<br>` con il tag nuova linea `\n`

Basterà inserire in app/Providers/AppServiceProvider.php il seguente codice all'interno di boot():

public function boot()
{
    Blade::directive('newline', function ($string) {
        return "<?php echo preg_replace('/\<br(\s*)?\/?\>/i', \"\n\", $string); ?>";
    });
}

Ed eccoci pronti a richiamare la nostra nuova direttiva nel blade:

<p>@newline($post->text)</p>

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. to insert a cookie message.