amiranbari/metronic

There is no license information available for the latest version (1.0.0) of this package.

it's a basic Management panel

1.0.0 2021-08-30 10:25 UTC

This package is auto-updated.

Last update: 2024-04-29 04:40:31 UTC


README

  1. Config your database in .env.

  2. Run: composer require amiranbari/metronic:dev-master

Run: php artisan vendor:publish - Then select 1.

  1. Change locale to fa in config/app.php

  2. Add this to your Providers in config/app.php

App\Providers\MetronicServiceProvider::class,

  1. Add this to your Aliases in config/app.php
'Metronic' => App\Classes\Theme\Metronic::class,
'Menu' => App\Classes\Theme\Menu::class,

Laravel 8

Put this in User.php in Models directory

use Spatie\Permission\Traits\HasRoles;

In User class: use HasFactory, Notifiable, HasRoles;

Add level to fillable fields.

Change composer.json autoload section like below"

   "autoload": {
           "psr-4": {
               "App\\": "app/",
               "Database\\Factories\\": "database/factories/",
               "Database\\Seeders\\": "database/seeders/"
           },
   		"files": [ "app/Tools/helpers.php" ]
       }   

Run: composer dump-autoload

Add these seeders call in DatabaseSeeder.php:

	$this->call(UserSeeder::class);
	$this->call(PermissionSeeder::class);
  • php artisan migrate:fresh --seed or php artisan migrate --seed

Add these into guards in auth.php:

	'admin' => [
            'driver' => 'session',
            'provider' => 'users',
        ],
  1. Put these in Kernel.php in Http directory

use App\Http\Middleware\Panel\CheckPermission;

'permission' => CheckPermission::class, in routeMiddleware

  1. Change these in Authenticate.php in redirectTo functions

return route('panel.login');

  • php artisan serve

Go to 127.0.0.1:8000/panel/login

Email: admin@gmail.com Password: 12345678

Enjoy it.