Welcome to my personal starter kit! This setup is designed for developers who want a lightweight, modern, and efficient foundation for building Laravel applications with a React frontend powered by InertiaJs.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- inertiajs/inertia-laravel: ^2.0
- laravel/breeze: ^2.3
- laravel/framework: ^12.0
- laravel/sanctum: ^4.0
- laravel/tinker: ^2.10.1
- spatie/laravel-permission: ^6.16
- tailflow/laravel-orion: ^2.23
- tightenco/ziggy: ^2.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^3.7
- pestphp/pest-plugin-laravel: ^3.1
This package is auto-updated.
Last update: 2025-03-17 05:09:36 UTC
README
π Introduction
Welcome to my personal starter kit YUI! This setup is designed for developers who want a lightweight, modern, and efficient foundation for building Laravel applications with a React frontend powered by Inertia.js.
This kit is JavaScript-first, using JSX instead of TSX, making it accessible to developers who prefer plain JavaScript over TypeScript. It includes React 19, TailwindCSS 4, and Breeze for simple authentication and scaffolding.
π― Features
βοΈ React 19 + JSX β Simple, clean, and TypeScript-free
βοΈ Laravel 12 + Breeze β Lightweight authentication with Inertia.js
βοΈ Inertia.js β Create modern single-page React, Vue, and Svelte apps using classic server-side routing.
βοΈ Orion β The simplest way to create REST API with Laravel
βοΈ TanStack Query β Powerful asynchronous state management for TS/JS
βοΈ Laravel-permission β Associate users with roles and permissions
βοΈ TailwindCSS 4 β Modern styling with utility-first CSS
βοΈ Vite-Powered β Lightning-fast HMR for smooth development
βοΈ Pre-configured Testing β Includes PHPUnit & Pest
βοΈ Quick Setup β Get started in minutes!
π Getting Started
1οΈβ£ Install
laravel new --using=luis-developer-08/yui
2οΈβ£ Install Dependencies
npm install
3οΈβ£ Run Migrations
php artisan migrate --seed
4οΈβ£ Start Development
composer run dev
π Your application is now up and running!
β‘ Create Inertia Components Easily
This starter kit includes a custom Artisan command to quickly generate Inertia.js React components:
ποΈ Generate a New Component
php artisan make:inertia Components/MyComponent
This will create a new file at resources/js/Components/MyComponent.jsx
with a basic component template.
π File Structure
resources/js/Components/MyComponent.jsx
β¨ Example Generated Component
import React from "react"; const MyComponent = () => { return <div>{/* MyComponent component */}</div>; }; export default MyComponent;
This command ensures that components are placed in the correct directory and prevents overwriting existing files. It also automatically opens the newly created file for editing.
β‘ Create Orion Controllers Easily
This starter kit also includes a command to quickly generate Orion controllers along with their associated models:
ποΈ Generate a New Orion Controller
php artisan make:orion PostController
This will create:
app/Http/Controllers/Orion/PostController.php
app/Models/Post.php
(if it doesnβt exist)- Adds a route in
routes/api.php
π File Structure
app/Http/Controllers/Orion/PostController.php
app/Models/Post.php
β¨ Example Generated Controller
<?php namespace App\Http\Controllers\Orion; use Orion\Http\Controllers\Controller; use App\Models\Post; class PostController extends Controller { protected $model = Post::class; }
β¨ Example Generated Model (if not existing)
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasFactory; protected $guarded = []; }
π Auto-Registered Route in routes/api.php
Orion::resource('posts', \App\Http\Controllers\Orion\PostController::class);
This command ensures that controllers are correctly placed, models are created if missing, and routes are automatically registered.
π Documentation
For more details on Laravel Breeze, visit the official Laravel Starter Kit docs.
π€ Contributing
We welcome contributions! Check out the Laravel contribution guide to get involved.
π Code of Conduct
Be kind and respectful. Please follow Laravel's Code of Conduct.
βοΈ License
This starter kit is open-source under the MIT license.