ilhanet / erpnet-profiting-milk
0.0.3
2020-02-29 14:39 UTC
Requires
- php: ^7.1.3
- illuminate/support: >=5
- nwidart/laravel-menus: 0.5.*
This package is not auto-updated.
Last update: 2024-11-03 13:41:04 UTC
README
Install
- Prepare Your Laravel instalation:
Make sure your .env files point to right database connections
- In your terminal run these commands:
composer require ilhanet/erpnet-profiting php artisan erpnet:backpack:install
- Use the following traits on your User model:
<?php namespace App; use Backpack\CRUD\CrudTrait; // <------------------------------- this one use Spatie\Permission\Traits\HasRoles;// <---------------------- and this one use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use CrudTrait; // <----- this use HasRoles; // <------ and this /** * Your User Model content */
- Change your
config/auth.php
to useBackpack\Base\app\Models\BackpackUser::class
:
'providers' => [ 'users' => [ 'driver' => 'eloquent', - 'model' => App\User::class, + 'model' => Backpack\Base\app\Models\BackpackUser::class, ], // 'users' => [ // 'driver' => 'database', // 'table' => 'users', // ], ],