LaravelPackages.net
Acme Inc.
Toggle sidebar
marjose123/laravel-nuxtui-starter-kit

The starter kit application for the Laravel framework that utilizes Vue, NuxtUi, TailwindCss, and other Laravel packages.

17
25
v1.0.2
About marjose123/laravel-nuxtui-starter-kit

marjose123/laravel-nuxtui-starter-kit is a Laravel package for the starter kit application for the laravel framework that utilizes vue, nuxtui, tailwindcss, and other laravel packages.. It currently has 25 GitHub stars and 17 downloads on Packagist (latest version v1.0.2). Install it with composer require marjose123/laravel-nuxtui-starter-kit. Discover more Laravel packages by marjose123 or browse all Laravel packages to compare alternatives.

Last updated

πŸš€ Starter Kit for Laravel

A modern, feature-rich starter kit for Laravel applications that combines the power of Laravel with Vue 3, Nuxt UI, and TailwindCSS. This starter kit provides a solid foundation for building scalable web applications with modern development practices.

🎯 About Project

This starter kit is designed to jumpstart your Laravel development with a carefully curated selection of tools and packages. It includes modern frontend technologies, comprehensive testing setup, code quality tools, and development utilities to help you build maintainable and scalable applications.

Screenshots

Explore the screenshots of the starter kit by navigating to the Screenshots folder.

πŸ› οΈ Tech Stack

Backend

  • 🐘 PHP 8.4 - Latest PHP version with modern features
  • 🎨 Laravel 12 - The latest Laravel framework
  • ⚑ Inertia.js - Modern monolith approach for SPAs

Frontend

  • πŸ–ΌοΈ Vue 3 - Progressive JavaScript framework
  • 🎨 Nuxt UI - Beautiful and accessible UI components
  • 🎯 TailwindCSS 4 - Utility-first CSS framework
  • πŸ“¦ TypeScript - Type-safe JavaScript development
  • ⚑ Vite - Fast build tool and dev server

Development Tools

  • πŸ§ͺ Pest PHP - Elegant PHP testing framework
  • 🎭 Playwright - End-to-end testing for web apps
  • πŸ” PHPStan - Static analysis for PHP
  • 🎨 Laravel Pint - Code style fixer for Laravel
  • ♻️ Rector - Automated refactoring tool
  • πŸ“‹ ESLint - JavaScript/TypeScript linting
  • πŸ’… Prettier - Code formatting
  • 🐳 Laravel Sail - Docker development environment
  • πŸ“§ Mailpit - Email testing tool

✨ Features / Functionality

Core Features

  • πŸ” User Authentication - Complete authentication system with Laravel Fortify
  • πŸ›‘οΈ Two-Factor Authentication (2FA) - Integration with recovery codes
  • πŸ”’ Password Confirmation - Secure page protection with password confirmation middleware
  • 🌐 RESTful API - Full API authentication with token refresh and management
  • πŸ“± Session Management - Device tracking, location data, and session revocation
  • 🎨 Appearance Management - Custom middleware for theme/appearance handling
  • πŸ“± Responsive Design - Mobile-first approach with TailwindCSS
  • ⚑ SPA Experience - Seamless navigation with Inertia.js
  • πŸ”” Notifications - Integrated notification system
  • πŸ“š API Documentation - Auto-generated API docs with Scramble
  • πŸ” Device Detection - Comprehensive user agent and location tracking

πŸš€ Installation

Prerequisites

  • PHP 8.4 or higher
  • Composer
  • Node.js & npm
  • Git

Quick Start with Laravel Installer

If you have the Laravel installer globally installed, you can create a new project using this starter kit:

composer global require laravel/installer

laravel new example-app --using=marjose123/laravel-nuxtui-starter-kit

Manual Installation

  1. Clone the repository

    git clone https://github.com/marjose123/laravel-nuxtui-starter-kit.git
    cd starter-kit
    
  2. Install PHP dependencies

    composer install
    
  3. Install Node.js dependencies

    npm install
    
  4. Environment setup

    cp .env.example .env
    php artisan key:generate
    
  5. Database setup

    touch database/database.sqlite
    php artisan migrate
    
  6. Start development servers

    composer dev
    # or separately:
    # php artisan serve
    # npm run dev
    

Available Scripts

  • composer dev - Start all development servers concurrently
  • composer dev:ssr - Start with server-side rendering
  • composer test - Run PHP tests
  • composer format - Format both frontend and backend code
  • composer analyse - Run static analysis
  • npm run dev - Start Vite dev server
  • npm run build - Build for production
  • npm run lint - Lint frontend code

πŸ“„ License

The Starter-kit for Laravel is open-sourced software licensed under the MIT license.

Comments