PHPackages                             saddlephp/saddlephp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. saddlephp/saddlephp

ActiveLibrary[Admin Panels](/categories/admin)

saddlephp/saddlephp
===================

The open-source admin panel framework for Laravel, built for Inertia and Vue. Define a resource, get a polished panel.

v1.0.1(today)101MITPHPPHP ^8.4CI passing

Since Jun 3Pushed today1 watchersCompare

[ Source](https://github.com/saddlephp/saddlephp)[ Packagist](https://packagist.org/packages/saddlephp/saddlephp)[ Docs](https://saddlephp.com)[ RSS](/packages/saddlephp-saddlephp/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (7)Versions (16)Used By (0)

 [![Saddle, there's a new admin panel in town](.github/og.png)](https://saddlephp.com)

 *Saddle up cowboy, there's a new admin panel in town.*

---

**Saddle** is the open-source admin panel framework for Laravel, built the modern way for **Inertia and Vue**. Round up your Eloquent models into polished resource panels, with form and table builders, roles and access, plugins, and multi-tenancy.

> **Status: v1.0 — CSV import/export and tenancy extras.** The marketing site lives at **[saddlephp.com](https://saddlephp.com)** ([SaddlePHP/saddlephp.com](https://github.com/SaddlePHP/saddlephp.com)).

Installation
------------

[](#installation)

```
composer require saddlephp/saddlephp
php artisan saddle:install
php artisan saddle:resource HorseResource --model=Horse
```

The service provider is auto-discovered. `saddle:install` publishes the config file, publishes panel assets, and creates `app/Saddle/` for your resource classes. Visit `/admin` to see the panel.

Define a resource
-----------------

[](#define-a-resource)

Place resource classes in `app/Saddle/`. Each class extends `SaddlePHP\Resource` and implements `form()` and `table()`.

```
