Kidd Tang

Results 8 comments of Kidd Tang

@pxpm really appreciate you taking so much time looking at it... this issue also puzzles me, and it seems like happening on this particular CRUD only... I tried to trim...

@tvdr I got your point! I didn't closely observe it is actually animating and expanding to the right. I did not do anything to make it animate anyway, however, I...

Possible to add country restriction option in the `address_google` CRUD options? ``` // Set initial restrict to the greater list of countries. $autocomplete.setComponentRestrictions( {'country': ['us', 'pr', 'vi', 'gu', 'mp']} );...

I wanted to extend the Controller, Request & Model. However, The CRUD Controller throw me the exception for the extended class from original PermissionCrudRequest `Declaration of App\Http\Controllers\Admin\PermissionCrudController::store(App\Http\Requests\PermissionRequest $request) should be...

@OliverZiegler I did that but the Warning still there... I am overriding `authorize()` method for my customized guard ``` namespace App\Http\Requests; use Backpack\PermissionManager\app\Http\Requests\PermissionCrudRequest as BackpackPermissionCrudRequest; use Illuminate\Foundation\Http\FormRequest; class PermissionRequest extends...

@abdelrahmanahmed I modify the package source file `PermissionCrudController.php` ``` public function __store(StoreRequest $request) { return parent::storeCrud(); } public function __update(UpdateRequest $request) { return parent::updateCrud(); } ``` So my function could...

it still pretty hard to integrate with Octane right now. I spin up the php artisan serve for xdebug purpose My trick: https://medium.com/p/14238abc0d08

I found a relative easy way to make it support HTTPS. Check out this [tutorial](https://dogcomp.medium.com/send-https-request-from-sim-7600x-lte-module-4f76be19e900)!