DeveloperBreeze

Related Posts

More content you might like

Tutorial
php

Creating Custom Blade Components and Directives

   use Illuminate\Support\Facades\Blade;

   public function boot()
   {
       Blade::directive('uppercase', function ($expression) {
           return "<?php echo strtoupper($expression); ?>";
       });
   }
   @uppercase('hello world')

Nov 16, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!