Closed mliling closed 6 months ago
Hello there! Thanks for opening your first issue on this repo!
Just a heads-up: Here at Backpack we use Github Issues only for tracking bugs. Talk about new features is also acceptable. This helps a lot in keeping our focus on improving Backpack. If you issue is not a bug/feature, please help us out by closing the issue yourself and posting in the appropriate medium (see below). If you're not sure where it fits, it's ok, a community member will probably reply to help you with that.
Backpack communication mediums:
backpack-for-laravel
tag;Please keep in mind Backpack offers no official / paid support. Whatever help you receive here, on Gitter, Slack or Stackoverflow is thanks to our awesome awesome community members, who give up some of their time to help their peers. If you want to join our community, just start pitching in. We take pride in being a welcoming bunch.
Thank you!
-- Justin Case The Backpack Robot
Hey @mliling
I hope you are already extending UserCrudController. Here is how I do it:
<?php
// app/Http/Controllers/Admin/UserCrudController.php
namespace App\Http\Controllers\Admin;
use Backpack\PermissionManager\app\Http\Controllers\UserCrudController as CrudController;
class UserCrudController extends CrudController
{
public function setup()
{
parent::setup();
$this->crud->denyAccess(['show']);
}
}
and remember to bind it in app/Providers/AppServiceProvider.php
:
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register()
{
+ $this->app->bind(
+ \Backpack\PermissionManager\app\Http\Controllers\UserCrudController::class, //this is package controller
+ \App\Http\Controllers\Admin\UserCrudController::class //this should be your own controller
+ );
}
}
Bug report
I got this issue and I took much time but i still couldn't fix this error. I have tried to hide the preview button but the solution doesn't work.
What I did:
What I expected to happen:
What happened:
What I've already tried to fix it:
I used this CRUD::denyAccess('show'); or $this->crud->removeButton('show'); in setup() or setupListOperation(). But it still can't help.
Backpack, Laravel, PHP, DB version:
PHP 8.2.13 Laravel Framework 10.46.0 DB MySQLServer 8.2.0
BACKPACK PACKAGE VERSIONS:
backpack/basset: 1.3.4 backpack/crud: v6.x-dev backpack/generators: v4.0.4 backpack/permissionmanager: 7.2.0 backpack/theme-tabler: 1.2.5