Alexandr Chernyaev

Results 168 comments of Alexandr Chernyaev

I like the idea of having this in a package. But I think we need to decide a few things before we release it: - It seems to me that...

@BrianWendt With the release of the update, this should be correct, please check.

Hi @picko1990 thanks for doing the work, but could you add a simple test?

I think we could do it right in the `total` method. Just allow the transfer of nesting and get as in your example. I just don't think it's cool to...

As far as I understand, this is a request for the function of specifying the css class for this field

For a new user to be able to log in to the admin panel, he must have permissions. You can add in the registration event or in any other place...

I recommend creating a user role. (In admin panel) And then add it in action `app/Actions/Fortify/CreateNewUser.php`: ```php public function create(array $input) { //... $role = Role::firstWhere('slug', 'user'); $user->addRole($role); return $user;...

If it's just an aesthetic issue, then you can remove it at the singleton level, like so: ```php Dashbord::removePermission('key') ``` Or add to exceptions in the display layer

@aspross You can use the definition separately from the route. [Example](https://github.com/tabuna/breadcrumbs#route-resource): ```php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Tabuna\Breadcrumbs\Breadcrumbs; use Tabuna\Breadcrumbs\Trail; class BreadcrumbsServiceProvider extends ServiceProvider { /** * Bootstrap any application...

@SadElephant Can you write a test to reproduce this?