PHPackages                             kdion4891/valiant - 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. kdion4891/valiant

ActiveLibrary[Admin Panels](/categories/admin)

kdion4891/valiant
=================

A Laravel 6 admin panel package.

1.0.3(6y ago)13224416[3 issues](https://github.com/kdion4891/valiant/issues)[1 PRs](https://github.com/kdion4891/valiant/pulls)MITPHPCI failing

Since Jan 2Pushed 6y ago4 watchersCompare

[ Source](https://github.com/kdion4891/valiant)[ Packagist](https://packagist.org/packages/kdion4891/valiant)[ Docs](https://github.com/kdion4891/valiant)[ RSS](/packages/kdion4891-valiant/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (5)Versions (4)Used By (0)

[![Valiant Laravel 6 Admin Panel Package](https://camo.githubusercontent.com/a829c5217d82e4752393922d35f67d174e7dc21cad14c7ef36346ca2be1cc2de/68747470733a2f2f692e696d6775722e636f6d2f7a6259647074382e706e67)](https://camo.githubusercontent.com/a829c5217d82e4752393922d35f67d174e7dc21cad14c7ef36346ca2be1cc2de/68747470733a2f2f692e696d6775722e636f6d2f7a6259647074382e706e67)

Valiant is a Laravel 6 admin panel package which promotes rapid development with high customization capabilities. It includes a model scaffolding command, expressive field &amp; action declaration, Laravel auth integration, user roles, activity logs, AJAX form &amp; modal support, automatic user timezones, and more.

- [Docs](docs/readme.md)
- [Screenshots](https://imgur.com/a/UiWZMml)
- [Support](https://github.com/kdion4891/valiant/issues)
- [Contributions](https://github.com/kdion4891/valiant/pulls)
- [Buy me a coffee](https://paypal.me/kjjdion)

Installation
============

[](#installation)

Create a new Laravel app via Composer:

```
laravel new myapp

```

Configure your `.env` file with your app name, URL, database, &amp; mail server.

Require Valiant via Composer:

```
composer require kdion4891/valiant

```

Publish install files using the `--force`:

```
php artisan vendor:publish --tag=install --force

```

Run the migrations:

```
php artisan migrate

```

Create an `Admin` user:

```
php artisan tinker
$user = new User
$user->name = 'Admin'
$user->email = 'admin@example.com'
$user->password = 'admin123' // user passwords are auto-encrypted
$user->role = 'Admin'
$user->save()

```

Visit your app URL and login.

Quickstart
==========

[](#quickstart)

Make scaffolding for a new model:

```
php artisan valiant:make MyModel

```

Update the new model `fields()`:

```
class MyModel extends Model
{
    use ValiantModel;

    public function fields()
    {
        return [
            Field::make('ID')
                ->table()->tableSearchSort()->tableDefaultOrder('desc')
                ->detail(),

            Field::make('Name')
                ->table()->tableSearchSort()
                ->detail()
                ->input()->inputCreateEdit()
                ->rulesCreateEdit(['name' => 'required']),

            Field::make('Created At')->detail(),
            Field::make('Updated At')->detail(),
        ];
    }

```

Update the new migration columns:

```
class CreateMyModelsTable extends Migration
{
    public function up()
    {
        Schema::create('my_models', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('name');
            $table->timestamps();
        });
    }

```

Run the migration:

```
php artisan migrate

```

Login to your app and click the `My Models` link in the sidebar.

- [Learn more in the docs](docs/readme.md)

###  Health Score

32

—

LowBetter than 71% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

2318d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9b5c8e6bc70c7c769121ef84848d08f6e1d48d6c43295b19ecbcf7b3eda3b995?d=identicon)[kdion4891](/maintainers/kdion4891)

### Embed Badge

![Health badge](/badges/kdion4891-valiant/health.svg)

```
[![Health](https://phpackages.com/badges/kdion4891-valiant/health.svg)](https://phpackages.com/packages/kdion4891-valiant)
```

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.4M206](/packages/backpack-crud)[laravelrus/sleepingowl

Administrative interface builder for Laravel.

810219.6k3](/packages/laravelrus-sleepingowl)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)[provision/administration

Laravel administration

113.7k2](/packages/provision-administration)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
