Hello, how are you? I'm curious. At the moment I created the version in tenancy but when installing shield it gives me this error. The model [Spatie\Permission\Models\Role] does not have a relationship named [team]. You can change the relationship being used by passing it to the [ownershipRelationship] argument of the [tenant()] method in configuration. You can change the relationship being used per-resource by setting it as the [$tenantOwnershipRelationshipName] static property on the [BezhanSalleh\FilamentShield\Resources\RoleResource] resource class. At the moment I have deleted the implementation. If you know how to solve it, it would be very good help because I am interested in this plugin. @codewithtonyofficial
@tilapotty3 ай бұрын
Thank you for your work! One optimisation step at the end of the process: in User.php: public function canAccessPanel(Panel $panel): bool { if($this->hasRole(Utils::getSuperAdminName())) { return true; } else if ($panel->getId() === 'blog') { return $this->hasRole(config('filament-shield.blog_user.name', 'blog_user')); } return false; }
@claytonmmbehi2 ай бұрын
Hi. Wonderful tutorial. I have a question. How do I redirect the blog user to the blog panel when they login via the -> /admin/login route. 2. When I log out via the blog panel. It brings error (Route Login not defined). 3. Blog User Roles does not reflect on the blog panel. Kindly help. Thank you.
@tevinmorake89246 ай бұрын
Interesting! Have you tried using shield with support for filaments "Teams" multi-tenancy?
@YacoubCoder6 ай бұрын
Tony, I followed a tutorial but added more challenges by incorporating multiple panels with different guards, models, and database tables-one for admins and another for users. However, I attempted to make the plugin work for two different authentication models, but it only functions for the admin model, not the user model. Despite my efforts, it's still not working. Could you please create a video demonstrating the steps mentioned above? If you have the time, I'll be eagerly waiting for it. If not, thank you anyway! ❤❤❤❤
@arifjagad6 ай бұрын
I have created an employee role, how do I prevent him from being able to open the admin page? At least he will be redirected to the /employee page
@TheoKotey6 ай бұрын
I am using multitenancy in my Filament application. However, I need to create team_admin role where they can create and manage users that belong to their team only. How do I do that?
@ademaf6423Ай бұрын
I didnt create my project with breeze then how can i add new user ?
@nicolasmenescardi40776 ай бұрын
🙌🙌
@cengizhan5976 ай бұрын
Is there a video of getting Auth tokens with Filament API
@xenon21066 ай бұрын
lets goo!
@YacoubCoder6 ай бұрын
Big thanks tony ❤..
@YacoubCoder6 ай бұрын
🥳🥳🥳🥳🥳🥳🥳
@FadhilAzhar-g1i3 ай бұрын
Hello sir, can you help me..? i used filament shield, i have 2 roles ( admin and user), - As admin, when 1 go to the classroom navigation menu, i will get the list data of all classroom (in this case : index' => Pages\inedexClass::route('/') , - As user, go to the classrooms navigation menu, i will direct to my classroom detail based on my Auth user id (in this case : view' => Pages\ViewClass::route('/{classroom id}/view'), - Both admin and user use only 1 navigation classroom Any solution..? thanks before..