Best laravel framework open-source packages.

VFullAuth

VFull Auth is ready to use with Laravel Breeze Authentication. It comes with the same features as VFull, but with Laravel Breeze Authentication configured and ready to use.
Updated 7 months ago

VFull Auth - VFull Starter kit with Breeze Authentication

VFullLogo

Introduction

This repository is an implementing of the Laravel Breeze application / authentication with VFull. All of the authentication boilerplate is already written for you - powered by Laravel Sanctum, allowing you to quickly begin pairing your beautiful Vue.js frontend with a powerful Laravel backend.

Inspiration

The basis of VFull Auth was taken from this project, I thank the creators Faisal Fajri and Eugene van der Merwe

Why VFull?

VFull is a heavily opinionated starter kit for Vue 3 powered by Vite. It comes with auto-importing features and leverages the latest and greatest features from Vue 3, Tailwind CSS, DaisyUI, TypeScript, Vue Router, Pinia, VueUse, UnHead, Axios, Unplugin Vue Components, Unplugin Auto Import, Vitest and Vue Test Utils configured and ready to use.

Why VFull Auth?

VFull Auth is ready to use with Laravel Breeze Authentication. It comes with the same features as VFull, but with Laravel Breeze Authentication configured and ready to use.

Features

Installation

First of all, you need to install Laravel

# Create the Laravel application...
laravel new vfull-backend

cd vfull-backend

# Install Breeze
composer require laravel/breeze

php artisan breeze:install api

Install VFull Auth

# Clone the repository
git clone 

# Install dependencies
npm install

Atention

In the backend, you need to change the file .env to FRONTEND_URL=http://localhost:3000 In the frontend, you need to change the file .env to VITE_PUBLIC_BACKEND_URL=http://localhost:8000

Is a very important using localhost during local development of your backend and frontend to avoid CORS "Same-Origin" issues.

Finally, run the applications with the commands:

# Run the backend
php artisan serve

# Run the frontend
npm run dev

License

VFull Auth is open-sourced software licensed under the MIT license.