Fabrice Toyideveloppeurtaf.hashnode.dev·Aug 27, 2024Laravel Authentication: Using Breeze and Other MethodsIntroduction Laravel est un framework qui permet de réaliser des progés de grandes envergure. C'est dans cet état d'esprit que j'ai réaliser cet didacticiel pour permettre de savoir installer Breeze. Installation : Pour installer Laravel Breeze, vous...Discuss·1 likebreeze
Noah Yaonoahyao.me·Aug 10, 2024First C++ program build via Blade and ClangQ & A CLANG basic setting Break point is not accurate optimize_list = [ "-O0", "-g", ] Envs export CXX=clang compile_flags.txt # Treat all files as C++ files -xc++ -std=c++17 BUILD If use blade, the generated build command with CLANG will in...DiscussC++
Asis Sharmaasis-sharma.hashnode.dev·Jun 9, 2024Craft Dynamic Laravel Views: A Beginner's Guide to Blade DirectivesHey there, fellow coders! Today, we're diving into the fantastic world of Laravel Blade directives, a game-changer for crafting clean and dynamic views in your Laravel applications. Buckle up and get ready to ditch clunky PHP code blocks and embrace ...Discussblade
Asis Sharmaasis-sharma.hashnode.dev·May 2, 2024Blade Templates: Your Secret Weapon for Clean Frontend CodeHey there, web dev warriors! Ever feel like your code is turning into a tangled mess of spaghetti? HTML, CSS, and PHP all crammed into one file – it can get pretty overwhelming, right? Well, fret no more! Today, we're here to introduce you to your ne...DiscussLaravel
Ahmed Abdelaalahmedabdelaal.hashnode.dev·Apr 29, 2024Custom Error Pages in LaravelLaravel makes it easy to display custom error pages for various HTTP status codes. For example, to customize the error page for 404 HTTP status codes, create a resources/views/errors/404.blade.php view template. This view will be rendered for all 404...Discuss·10 likes·82 readsLaravel
Saeed Vaziryyecoder.com·Apr 24, 2024Laravel and HTMX Error HandlingIt's been a while now I am using HTMX more often especially after I migrated VitoDeploy to HTMX! Here I will show you how you can nicely handle the server errors when using HTMX for your HTTP calls in your frontend. The Problem When you're using HTM...Discuss·1 like·816 readsLaravel