- Category : Laravel

Laravel

Laravel is a web application framework with expressive, elegant syntax.

Laravel

Blogs

View All
Utilizing Queues with Laravel on Shared Hosting
2023-12-21
|
Anuz Pandey

Utilizing Queues with Laravel on Shared Hosting

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.

Naming Conventions in Laravel
2024-02-15
|
Anuz Pandey

Naming Conventions in Laravel

In this blog post, I'll be discussing some of the naming conventions in Laravel that I personally follow.

Laravel Blade Directives: Loops
2024-01-02
|
Anuz Pandey

Laravel Blade Directives: Loops

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`.

Laravel Blade Directives: Conditionals
2023-12-29
|
Anuz Pandey

Laravel Blade Directives: Conditionals

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 Blade Directives: Class, Errors, Helpers, JS, JSON, PHP, Use, and Style
2024-01-04
|
Anuz Pandey

Laravel Blade Directives: Class, Errors, Helpers, JS, JSON, PHP, Use, and Style

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.

Laravel Blade Directives: Authorization
2023-12-27
|
Anuz Pandey

Laravel Blade Directives: Authorization

In this article, we'll learn how to secure our Laravel app by exploring different blade directives for authorization checks.

From Macros to Mixins: Elevating Your Laravel Projects
2023-12-26
|
Anuz Pandey

From Macros to Mixins: Elevating Your Laravel Projects

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.

Exploring Laravel Macros: Extending Functionality with Ease
2023-12-25
|
Anuz Pandey

Exploring Laravel Macros: Extending Functionality with Ease

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.

Deploy Laravel Project in Digital Ocean Droplet
2023-06-21
|
Anuz Pandey

Deploy Laravel Project in Digital Ocean Droplet

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.

Convert English Date to Nepali Date (AD to BS) in Laravel Project
2023-12-24
|
Anuz Pandey

Convert English Date to Nepali Date (AD to BS) in Laravel Project

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.

Backup Laravel Application on Google Drive
2024-02-10
|
Anuz Pandey

Backup Laravel Application on Google Drive

In this article, we will learn how to backup a Laravel application on Google Drive on a scheduled basis using spatie/laravel-backup and masbug/flysystem-google-drive-ext.