Skip to main content

Welcome to VIP2CARS Documentation

Everything you need to install, configure, and manage your professional automotive client and vehicle management system built with Laravel 12, Livewire, and Flux UI.

Client Management
Complete CRUD operations
Vehicle Tracking
Comprehensive vehicle database
Secure Authentication
Laravel Fortify integration

Quick Start

Get VIP2CARS up and running in minutes with our step-by-step guide.

1

Clone the repository

Download the VIP2CARS source code from GitHub.
git clone https://github.com/farceque99/AndersonFarcequeFlores.git
cd AndersonFarcequeFlores
2

Install dependencies

Install both PHP and Node.js dependencies.
composer install
npm install
3

Configure environment

Set up your database connection and application key.
cp .env.example .env
php artisan key:generate
Edit the .env file to configure your database credentials (DB_DATABASE, DB_USERNAME, DB_PASSWORD).
4

Run migrations

Create the database tables and seed sample data.
php artisan migrate --seed
5

Start the application

Launch the development server.
php artisan serve
In a separate terminal, compile frontend assets:
npm run dev
Access the application at http://127.0.0.1:8000

Explore by Topic

Jump into the areas that matter most to you.

Client Management

Learn how to manage client records with full CRUD operations, validation, and relationship tracking.

Vehicle Management

Manage vehicle inventory with comprehensive tracking and client associations.

Authentication

Secure user authentication powered by Laravel Fortify with registration and login flows.

Dashboard

Access your central dashboard for system overview and quick navigation.

Developer Resources

Dive deep into the architecture and extend VIP2CARS for your needs.

Architecture Overview

Understand the MVC architecture, Livewire integration, and system design patterns.

Database Schema

Explore the complete database structure with tables, relationships, and migrations.

Models & Controllers

Learn about the Cliente and Vehiculo models and their controller implementations.

Testing

Run the test suite and write your own tests with Pest PHP.

Ready to get started?

Follow our installation guide to set up VIP2CARS on your local machine or deploy it to production.

View Installation Guide