erikn69

Results 113 comments of erikn69

@MortenDHansen was it already added? https://github.com/owen-it/laravel-auditing/commit/82b1cdd814b3fb0f5a47a35ea929a34776e80238 https://github.com/owen-it/laravel-auditing/blob/240b29a1e6c40c02ed1fb9b4c01ef94d6d4ff7c0/src/Audit.php#L247-L249

Overwrite `generateTags():` https://github.com/owen-it/laravel-auditing/blob/2317a5ed72f0c4256b1c274d3e6ef53db5d0598c/src/Auditable.php#L561-L564 Read documentation for more info

Did you try adding `getAuthIdentifier()` on user model ```php public function getAuthIdentifier(){ return $this->id; } ```

~Based on the latest tags(**1.1.0,** **1.2.0**, **1.3.0**), I have used **1.4.0** on `package.json` as next release number~ Based on the latest tags(**1.1.0,** **1.2.0**, **1.3.0**, **1.4.0**), I have used **1.5.0** on...

@rennokki is there a way to automatically set next version on `package.json` after new release? https://github.com/release-it/release-it

Duplicate of #22 ?? Also upgrade `.env.example` based on [config/websockets.php#L16](https://github.com/beyondcode/laravel-websockets/blob/605a7fa71ddabfffe381b079acc21403c7547ea2/config/websockets.php#L16) ```properties LARAVEL_WEBSOCKETS_PORT=6001 MIX_LARAVEL_WEBSOCKETS_PORT="${LARAVEL_WEBSOCKETS_PORT}" ``` so in `config/broadcasting.php` can be added ```php 'port' => env('LARAVEL_WEBSOCKETS_PORT', 6001),' ``` and on `resources/js/bootstrap.js` ```js...

@kaidesu ping