Laravel Voyager Database – Database manager for Voyager

Laravel Voyager provides a robust database management interface that allows you to easily create, manage, and interact with your application’s database tables directly from the admin panel. Accessing the Database Manager Log in to Voyager: First, ensure you’re logged into the Voyager admin panel at http://your-app-url/admin. Navigate to Database: From the sidebar, click on Tools, …

Laravel Voyager Database – Database manager for Voyager Read More »

Laravel Voyager – Admin panel for Laravel

Laravel Voyager is a powerful admin panel package for Laravel that allows you to create and manage admin interfaces easily. It provides features such as CRUD (Create, Read, Update, Delete) management, a media manager, and more. Step 1: Install Laravel First, create a new Laravel project if you don’t have one: bash

Step 2: …

Laravel Voyager – Admin panel for Laravel Read More »

Laravel Multi Auth – Multi-authentication functionality

Implementing multi-authentication in Laravel allows you to manage different user types (e.g., admin, user) with separate authentication guards. Step 1: Set Up Your Laravel Project First, ensure you have a Laravel project set up. If not, create a new one: bash

  Step 2: Configure Authentication If you haven’t already, install Laravel Breeze or …

Laravel Multi Auth – Multi-authentication functionality Read More »

Laravel Rest API Boilerplate – REST API starter kit

Creating a REST API in Laravel can be streamlined using a boilerplate or starter kit that sets up the basic structure and conventions. 1. Install Laravel Start by creating a new Laravel project: bash

2. Set Up Database Configure your database settings in the .env file: dotenv

3. Create Authentication (Optional) For many …

Laravel Rest API Boilerplate – REST API starter kit Read More »

Laravel Collective API – API management for Laravel

Laravel Collective provides a set of components that enhance the Laravel framework, including features for API management. Key Features Routing: Define routes for your API using the expressive syntax Laravel offers. Laravel Collective allows you to manage route groups, middleware, and versioning easily. Form & HTML Components: Simplifies form creation and HTML generation, which can …

Laravel Collective API – API management for Laravel Read More »

Laravel Timezone – Manage timezones and conversions

Managing time zones in a Laravel application can be effectively handled using the built-in support for date and time manipulation along with packages like nesbot/carbon. This allows you to work seamlessly with different time zones and perform conversions. Step 1: Install Carbon If you haven’t installed Carbon yet, you can do so using Composer. Carbon …

Laravel Timezone – Manage timezones and conversions Read More »

Laravel Simple Qrcode – Generate QR codes

Generating QR codes in a Laravel application can be easily accomplished using the Simple Qrcode package. Step 1: Install Simple Qrcode You can install the Simple Qrcode package via Composer. Run the following command in your terminal: bash

  Step 2: Configure the Service Provider (Optional) If you are using Laravel 5.5 or later, …

Laravel Simple Qrcode – Generate QR codes Read More »

Laravel Elasticsearch – Elasticsearch integration

Integrating Elasticsearch with your Laravel application can enhance search capabilities significantly. Step 1: Install Elasticsearch If you haven’t installed Elasticsearch yet, you can do so by following the instructions on the official Elasticsearch website. Make sure it’s running on your local machine or server. Step 2: Install the Elasticsearch PHP Client You can install the …

Laravel Elasticsearch – Elasticsearch integration Read More »

Laravel PDF Generator – PDF generation

Generating PDFs in a Laravel application can be accomplished easily using packages like DomPDF, Snappy, or Laravel PDF. Step 1: Install DomPDF You can install the DomPDF package via Composer. Run the following command in your terminal: bash

  Step 2: Publish the Configuration File (Optional) To publish the configuration file (if needed), run …

Laravel PDF Generator – PDF generation Read More »

Laravel Stripe – Stripe API integration

Integrating Stripe into your Laravel application allows you to accept payments seamlessly. Step 1: Install Laravel Cashier Laravel Cashier is a package that provides an interface for managing subscriptions and handling payments with Stripe. First, install Laravel Cashier: bash

  Step 2: Configure Stripe Credentials You need to set up your Stripe API keys …

Laravel Stripe – Stripe API integration Read More »

Scroll to Top