Bookmark frequently used folders in Ubuntu
November 23, 2022 — I’ve been an ardent Linux user for quite some time now. Especially the Ubuntu flavor. And one of the things that I love about Ubuntu is that it’s very customizable.
A blog on PHP, JavaScript, and more
November 23, 2022 — I’ve been an ardent Linux user for quite some time now. Especially the Ubuntu flavor. And one of the things that I love about Ubuntu is that it’s very customizable.
November 22, 2022 — There are scenarios where you might want to track the value of an input field, especially the number inputs, and change the theming of the input field based on the value.
November 18, 2022 — Constants are a great way to define values that are not going to change. They are also a great way to define values that are going to be used in multiple places.
November 17, 2022 — If you are a web developer, you might have come across the need to apply some CSS rules only for Firefox.
November 16, 2022 — A minor version of Laravel 9.x has just been released and with this release, a new Lottery
class has been introduced.
November 14, 2022 — Twitter’s Blue tick verification is all the rage these days. By getting verified on Twitter, you can get a blue tick next to your name which makes you look more authentic and trustworthy.
November 12, 2022 — Validating things plays a crucial role in any web application. In Laravel, you can validate the incoming request data using the validate()
method. This method accepts an array of validation rules as its first argument. These rules are used to validate the incoming request data.
November 10, 2022 — Blade views are the most common way to render HTML in Laravel. But, what if you want to render a specific fragment of a blade view? For instance, you want to render a specific section of a blade view. Or, you want to render a specific component of a blade view.
November 8, 2022 — Slugs are the part of a URL that identifies a particular page on a website. For example, in the URL https://www.google.com/search?q=javascript
, the slug is search
. It is also known as the URL segment or the permalink.