© 2022 Hashnode
The problem I recently got a question from a client about disappearing line breaks. It was a valid question since the text came from a textarea input that was echoed out on a page. The type of content…
Many times, we are facing the issue to assign a different CSS class depending on which page we are visiting. I present 2 ways to do this. Using php ternary operator in Blade file <a href="{{route('authentication')}}" class="{{ reques…
Life can be exciting when dreams begin to manifest. The very essence of life lies in the solutions you bring to the problems that face us as humans. The will to live, to survive, and to thrive in a wo…
The problem 🤔 Sometimes, you need VueJS in your Laravel Mix workflow, without having to use any additional packages like Laravel Jetstream. All you need is to create a simple Vue component somewhere …
Amazon Lightsail offers dedicated Databases. You can make use of it instead of an on-instance database. It's easy, managed, secure, and most importantly it's not tied to the instance. So, your databas…
Laravel Livewire Introduction Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade as your templating language. This is a great stack to choose if you want to build an applicat…
Overview Migration in Laravel makes it possible to create tables in your database without using your database manager. This can be done right within your terminal with the use of laravel artisan comma…
What you'll learn In this part of the series, you'll learn the following: What Sanctum is How to install and use Laravel Sanctum Implement the Sign-Up function Implement the Login function Implement…
Disclaimer: This article is long. I recommend you to code along as we progress. If you are not in front of a development computer, bookmark this URL and come back later. Is this tutorial for you? ☑️…
Taking regular backup/snapshots of a production application is important. It is one of the main requirements of a disaster recovery(DR) plan. But snapshots are not only for DR, you can use them to mov…