How to change Laravel public folder to public_html?

Laravel is a popular PHP framework for building web applications. By default, Laravel stores its public files in a directory named “public” at the root of your project. However, some hosting providers use a different naming convention for the public folder, such as “public_html”. In this post, we will explore how to change Laravel public

Learn More

Implementing Mailgun in Laravel with Example

In today’s digital age, sending email is crucial for businesses. Laravel, one of the most popular PHP frameworks, provides robust support for email functionality. With Laravel, we can easily integrate any mail service providers like Mailtrap, Mailgun, or Gmail. In this post, we will implement Mailgun in Laravel with a practical example. By integrating Mailgun,

Learn More

Sending SMS Using Twilio in Laravel 10

In this tutorial, we will see how to send SMS messages using Twilio in Laravel 10. Twilio is a powerful cloud communication platform that enables developers to integrate SMS and voice capabilities into their applications. By the end of this tutorial, you will have a clear understanding of how to leverage Twilio’s API to send

Learn More

Understanding Route Model Binding in Laravel

In Laravel, a popular PHP framework, there are numerous features designed to simplify and streamline web development tasks. One such feature is Route Model Binding, which offers an efficient and elegant way to retrieve database records based on route parameters. In this article, we will explain what Route Model Binding is, why it is beneficial,

Learn More

Understanding Logging in Laravel Applications

Logging plays a vital role in the development and maintenance of Laravel applications. With Laravel’s robust logging system, developers can effectively track errors, debug issues, and gain valuable insights into their application’s behavior. In this article, we will go through the fundamentals of logging in Laravel applications, its significance, and practical examples to help you

Learn More

Image Upload Using Dropzone in Laravel

For any project, Image uploading is a common requirement in web development projects, and Laravel, being a powerful PHP framework, offers a convenient solution to handle this task efficiently. With Dropzone, we can improve and implement file-related operations like allowing users to upload a specific number of files, size, or even type to upload. Using

Learn More

Implementing Full Text Search in Laravel Scout

Implementing a robust search functionality is crucial for many web applications. Laravel Scout, a powerful search package, simplifies the process of integrating full-text search capabilities into Laravel projects. In this tutorial, we will explore the steps involved in implementing full-text search using Laravel Scout. By the end, you’ll have a clear understanding of how to

Learn More

Implementing JWT authentication in Laravel

In today’s digital landscape, securing user authentication has become a top priority for web developers. One popular method to achieve this is JSON Web Token (JWT) authentication. In this tutorial, we will walk you through the implementation of JWT authentication in Laravel, a powerful PHP framework. By the end, you’ll have a solid understanding of

Learn More