Code That Speaks For Itself
Code That Speaks For Itself
Simple, elegant syntax powers amazing functionality. Every feature has been
considered to create a thoughtful and cohesive development experience.
Authentication
Authorization
Eloquent ORM
Database migrations
Validation
Notification and mail
File storage
Job queues
Task scheduling
Testing
Events and WebSockets
Authentication
Inertia
Livewire
SPA and Mobile Apps
UserController.php
Users.jsx
1class UserController
2{
3 public function index()
4 {
5 $users = User::active()
6 ->orderByName()
7 ->get(['id', 'name', 'email']);
8
9 return Inertia::render('Users', [
10 'users' => $users,
11 ]);
12 }
13}
Inertia
Modern Monoliths