PHPackages                             advaith/seamless-admin - 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. advaith/seamless-admin

ActiveLibrary[Admin Panels](/categories/admin)

advaith/seamless-admin
======================

A seamless django like admin panel setup for Laravel

v0.6.2(2y ago)461464[3 issues](https://github.com/Advaith3600/seamless-admin/issues)MITVuePHP ^8.0.2

Since Apr 4Pushed 2y ago6 watchersCompare

[ Source](https://github.com/Advaith3600/seamless-admin)[ Packagist](https://packagist.org/packages/advaith/seamless-admin)[ RSS](/packages/advaith-seamless-admin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (18)Used By (0)

Seamless Admin Panel
====================

[](#seamless-admin-panel)

A seamless Django-like admin panel setup for Laravel. Simple, non-cms table manager for admins.

[![Latest Stable Version](https://camo.githubusercontent.com/b3b4580e8b81e01be035efe9c22e64d0883f1e02a798b9710e66b1abbf7773c0/687474703a2f2f706f7365722e707567782e6f72672f616476616974682f7365616d6c6573732d61646d696e2f76)](https://packagist.org/packages/advaith/seamless-admin)[![License](https://camo.githubusercontent.com/ba97c38773a9479210fe885007a5279598abe999393bcb2b5d257d7b54a246de/687474703a2f2f706f7365722e707567782e6f72672f616476616974682f7365616d6c6573732d61646d696e2f6c6963656e7365)](https://packagist.org/packages/advaith/seamless-admin)[![Tests](https://github.com/advaith3600/seamless-admin/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/advaith3600/seamless-admin/actions/workflows/run-tests.yml/badge.svg?branch=main)

[![Screenshot](Screenshot.png)](Screenshot.png)

Laravel versions `6.*`, `7.*`, `8.*`, `9.*`, `10.*`, `11.*` are supported. Please ensure that you have a minimum of PHP `8.0.2` installed.

Installation steps
------------------

[](#installation-steps)

1. Require the Package

    Run the following command to install the package into your Laravel application:

    ```
    composer require advaith/seamless-admin
    ```
2. Publish assets and config files with:

    ```
    php artisan vendor:publish --provider="Advaith\SeamlessAdmin\SeamlessAdminServiceProvider"
    ```

    This will create a `seamless.php` configuration file within your config folder. This will also publish all the assets related to this package.

    > **Note**: If you find the UI or the admin functionalities are not working properly after a `composer update`, run this command again with the flag `--tag="seamless-admin-assets"` to republish the assets. This will override the existing assets with the new ones.

Caching
-------

[](#caching)

The SeamlessAdmin package uses caching to improve the loading time of the package routes. If you cannot find your model registered in the sidebar, try clearing the cache. To clear the cache, run

```
php artisan seamless:clear
```

Usage
-----

[](#usage)

Use the provided trait, `SeamlessAdmin`, in any of your models to get started with the package. Example:

```
