Akash Pateakashpate.com·Sep 28, 2024React JS inside Laravel Blade: A Seamless Approach to Modern Web DevelopmentIn today’s fast-paced web development world, using the best tools to build interactive user interfaces is essential. Laravel, a powerful PHP framework, is known for its elegant syntax and robust features, while React JS is the top choice for creating...DiscussReact
Kevin Millerkevinmiller.hashnode.dev·Mar 19, 2024Laravel Blade: Streamlining View Development and Template RenderingWhen it comes to modern web development, efficiency and productivity are paramount. Developers are constantly seeking ways to streamline their workflows and reduce the time spent on repetitive tasks. This is where Laravel Blade, a powerful templating...Discusshire dedicated laravel developer
MKhalidmkhalid.hashnode.dev·Jan 19, 2024Laravel Blade Templating: From Basics to Advanced TechniquesWhen it comes to the dynamic world of web development, efficient and readable code is key to success. Laravel, a powerful PHP framework, offers a compelling templating engine known as Blade. In this guide, we delve into the nuances of Laravel Blade T...Discuss·1 like·27 readsblade templating engine
Martin Saxamartinsaxa.hashnode.dev·Nov 3, 2023How to add Bootstrap 5 to Laravel projectBootstrap is a powerful, extensible, and feature-packed frontend toolkit. Underneath, it's built using sass. It comes with powerful prebuilt components. In this article, we will look into integrating it into the Laravel project. Option 1 - CDN (the b...Discuss·168 readsLaravel
Fernando Bezerrafersales.hashnode.dev·Aug 4, 2023Como usar @class blade diretiva em laravel 9Neste tutorial, aprenderemos a usar a diretiva blade @class no Laravel 9 para compilar condicionalmente uma string de classe CSS. Essa diretiva aceita um array de classes, permitindo-nos exibir a cor do estilo com base nos valores true e false. Podem...DiscussHacks Laravellaravel blade
O'Brien Evancealcatrez.hashnode.dev·Jan 15, 2023Laravel @stack @push @append in Blade TemplatesA 'stack' can easily be defined as a collection of items. In Laravel, a stack's main purpose is to facilitate the pushing of different styles, scripts and segments from different places to a layout that is being extended. Let's try and break that dow...Discuss·8 likes·897 readsLaravel
David Carrdcblogdev.hashnode.dev·Sep 10, 2021Testing Blade components in LaravelLaravel provides a range of methods to test parts of the framework, one of which is called blade() which allows you to test blade components work as expected. Let's take a simple blade component: @props([ 'type' => 'submit' ]) <div> <button ...Discuss·389 readsLaravel TestingLaravel