Giter VIP home page Giter VIP logo

Comments (6)

filippotoso avatar filippotoso commented on June 13, 2024

Follow the documentation:

https://laratrust.santigarcor.me/docs/8.x/installation.html

  1. Add the Laratrust\Contracts\LaratrustUser interface and Laratrust\Traits\HasRolesAndPermissions trait in your user classes.
use Laratrust\Contracts\LaratrustUser;
use Laratrust\Traits\HasRolesAndPermissions;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable implements LaratrustUser
{
    use HasRolesAndPermissions;

    // ...
}

from laratrust.

PardisZaryab avatar PardisZaryab commented on June 13, 2024

I have done that and here is my user model and Dashboard file repository address.
https://github.com/PardisZaryab/zar

from laratrust.

filippotoso avatar filippotoso commented on June 13, 2024

I just created a new Laravel installation, installed Laratrust per documentation and Auth::user()->hasRole() works perfectly.

What happens if you execute the following code at the beginning of the DashboardController::index() method?

dd(Auth::user());

from laratrust.

PardisZaryab avatar PardisZaryab commented on June 13, 2024

This is the result.

App\Models\User {#666 ▼ // app\Http\Controllers\DashboardController.php:14
#connection: "mysql"
#table: "users"
#primaryKey: "id"
#keyType: "int"
+incrementing: true
#with: []
#withCount: []
+preventsLazyLoading: false
#perPage: 15
+exists: true
+wasRecentlyCreated: false
#escapeWhenCastingToString: false
#attributes: array:8 [▶]
#original: array:8 [▶]
#changes: []
#casts: array:1 [▶]
#classCastCache: []
#attributeCastCache: []
#dateFormat: null
#appends: []
#dispatchesEvents: []
#observables: []
#relations: []
#touches: []
+timestamps: true
+usesUniqueIds: false
#hidden: array:2 [▶]
#visible: []
#fillable: array:3 [▶]
#guarded: array:1 [▶]
#rememberTokenName: "remember_token"
#accessToken: null
}

from laratrust.

filippotoso avatar filippotoso commented on June 13, 2024

What about:

dump(class_uses(Auth::user()));
dd(method_exists(Auth::user(), 'hasRole'));

from laratrust.

PardisZaryab avatar PardisZaryab commented on June 13, 2024

I added
dd(Auth::user());
at the end of my dashboard code and it worked. Now it redirect to different dashboards.
Thank you so much for help

from laratrust.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.