Laravel is a web application framework with expressive, elegant syntax.
This article will explore how to utilize Laravel Queues on shared hosting environments. In scenarios where the installation of supervisor for queue worker management isn't feasible due to restrictions imposed by shared hosting environments, such as those utilizing Cpanel access exclusively, alternative strategies are required.
In this blog post, I'll be discussing some of the naming conventions in Laravel that I personally follow.
In this article, we will learn about Laravel Blade Directives: Loops. Laravel Blade provides a set of directives to work with loops. We will learn about `@for`, `@foreach`, `@forelse`, `@while`, `@empty`, `@continue` and `@break`.
In this article, we'll learn about different Blade directives for conditional checks in Laravel. These directives provide a convenient way to manage and handle conditional logic within your Blade templates.
Laravel provides a variety of Blade directives to simplify common tasks in your Blade templates. In this article, we'll explore several useful Blade directives for working with CSS classes, error messages, JavaScript variables, JSON data, PHP code, and more. These directives help you write cleaner, more expressive Blade templates and streamline your development workflow.
In this article, we'll learn how to secure our Laravel app by exploring different blade directives for authorization checks.
In this article, we'll explore advanced techniques for managing Laravel Macros using the `mixin` method provided within the `Macroable` trait. We'll learn how to organize and maintain Macros effectively, enhancing the flexibility and maintainability of Laravel projects.
In this article, we'll explore Laravel macros and learn how to extend Laravel's core functionality with custom macros. We'll cover the basics of macros, how to define them, and how to use them to enhance your Laravel applications.
In this blog post, I'll take you on an exciting journey of deploying a Laravel project on a Digital Ocean droplet. From creating and configuring your droplet to deploying your code and securing your application, we'll cover each step in detail, ensuring that you gain a solid understanding of the entire process.
In this tutorial, we'll explore how to convert English date to Nepali date (AD to BS) and vice-versa in a Laravel project. We'll utilize the `anuzpandey/laravel-nepali-date` package to achieve this functionality, which provides a simple and efficient solution for date conversion.