🛠 For Developers
Technical features designed to make Peak flexible and extendable for developers.
Code smart, build fast.
Built with clean, extensible code and modern Laravel best practices — so you can ship faster and focus on what matters.
- 🔧 Developer-Friendly & Extendable Code
- Built on Laravel’s solid foundation, with modular components that are easy to extend and customize.
- 🧰 Comprehensive Admin Settings
- Easily configure your system’s mail, storage, security settings, and more through a robust admin dashboard.
- 🔐 Authentication Suite
- Full auth features, including social logins, 2FA, Magic Links, and user impersonation.
- ⚡ Ready-to-Use API
- First-party integration with Laravel Sanctum. Laravel Sanctum provides a featherweight authentication system for SPAs, mobile applications, and token-based APIs.
<?php
use Inertia\Inertia;
use Qoraiche\Peak\Services\Cards\BaseCard;
class RecentUsersCard extends BaseCard
{
public function data(): array
{
return [
'recentUsers' => Inertia::defer(fn() => User::count(), 'recentCards'),
];
}
}