ramivel / ramivel
Laravel Admin & Multiauth package
1.8.10.x-dev
2023-10-03 12:56 UTC
Requires
- php: ^7.2|^8.0|^8.1
- laravel/framework: ^5.6|^6.0|^7.0|^8.0|^9.0|^9.11|9.14.*|^10.0
Requires (Dev)
- fzaninotto/faker: ^1.9
- mockery/mockery: ^1.3
- orchestra/database: ^6.0
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2026-03-29 00:58:17 UTC
README
This package is just create admin side (multi auth), which is totaly isolated from your normal auth ( which we create using php artisan make:auth )
On top of that, you can use multiple authentication types, simultaneously, so you can be logged in as a user and an admin, without conflicts!
Version Guidance & installition
| Laravel version | Branch | Install |
|---|---|---|
| 6.0 && 7.0 | 1.6 | composer require ramivel/ramivel:1.0-dev |
| 8.0 | 1.8.1 | composer require ramivel/ramivel:1.8.1-dev |
Run This Commend
composer update
After that
Connect database
Run This Commend
php artisan ramivel:install
Run This Commend
php artisan storage:link
Run This Commend
composer dump-autoload
Add this trait on this following path ../vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
if (trait_exists('App\Relation\RelationMethods')) { trait call_relation_helpers { use \App\Relation\RelationMethods; } }else{ trait call_relation_helpers{} } abstract class Model implements ArrayAccess, Arrayable, Jsonable, JsonSerializable, QueueableEntity, UrlRoutable { use call_relation_helpers, ......... atc