ilhanet / erpnet-profiting
0.0.1
2019-10-03 14:24 UTC
Requires
- php: ^7.1.3
- illuminate/support: >=5
This package is auto-updated.
Last update: 2024-10-29 05:53:00 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', // ], ],