Skip to content
forked from kdion4891/valiant

A Laravel 6 admin panel package.

License

Notifications You must be signed in to change notification settings

ImWizeon/valiant

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Valiant Laravel 6 Admin Panel Package

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

Installation

Create a new Laravel app via Composer:

laravel new myapp

Configure your .env file with your app name, URL, database, & 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

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.

About

A Laravel 6 admin panel package.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 47.7%
  • HTML 45.3%
  • JavaScript 5.2%
  • CSS 1.8%