Loading…
Loading…
PHP · Eloquent
Laravel apps ship with Eloquent ORM, Fortify-style auth, migrations + seeders, queue jobs, and either Blade or Inertia + React frontend. PHP 8.2+, Pest tests, composer scripts.
Every Laravel app generated by Archiet ships with these baseline pieces. No template-cutting, no placeholder TODOs.
One representative file from a generated Laravel app. Your generated output will include many more files like this one, customized to the entities and flows in your blueprint.
<?php
namespace App\Http\Controllers;
use App\Http\Requests\StoreItemRequest;
use App\Models\Item;
class ItemController extends Controller
{
public function store(StoreItemRequest $request)
{
$item = Item::create([
...$request->validated(),
'workspace_id' => $request->user()->workspace_id,
'created_by' => $request->user()->id,
]);
return response()->json(['data' => $item], 201);
}
}Pick Laravel when your team already ships PHP, or you want the most productive full-stack monolith available. Huge ecosystem, good hiring pool.