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(1mo ago)201MITPHPPHP ^8.4CI passing

Since Jun 3Pushed 1mo ago1 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 2w ago

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

 [العربية](docs/translations/README.ar.md) • [Deutsch](docs/translations/README.de.md) • **English** • [Español](docs/translations/README.es.md) • [Français](docs/translations/README.fr.md) • [Italiano](docs/translations/README.it.md) • [日本語](docs/translations/README.ja.md) • [한국어](docs/translations/README.ko.md) • [Nederlands](docs/translations/README.nl.md) • [Polski](docs/translations/README.pl.md) • [Português (BR)](docs/translations/README.pt-BR.md) • [Русский](docs/translations/README.ru.md) • [Türkçe](docs/translations/README.tr.md) • [简体中文](docs/translations/README.zh-CN.md)

 [![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()`.

```
