erikn69

Results 56 issues of erikn69

If someone is using another port instead of `6001` on websockets.php, use it as default on console command, with this avoid using `--port=OTHER_PORT`, fallback on `6001`

Closes #908 It could be used for cloud disks Example ```php // keeps old functionality $pdf->save('relative_path/file.pdf'); $pdf->save('/absolute_path/file.pdf'); // adds new functionality $pdf->save('file.pdf', 's3'); $pdf->save('file.pdf', 'local'); // concatenate $pdf->save('file.pdf', 'local')->save('file.pdf', 's3');...

Just test, no release needed

Remove unnecessary files on vendor

Closes #602 As it currently stands before a new version is released it is necessary to manually update the server version.

**NO RELEASE NEEDED**

## Description Update export-ignore for vendor ## CHANGELOG * [CHANGED] Ignore `pull_request_template.md` on vendor

Closes #2165 Closes https://github.com/spatie/laravel-permission/issues/1997#issuecomment-1019023930 Closes https://github.com/spatie/laravel-permission/issues/626#issuecomment-358911209 Closes #309 This PR adds support for arrays(also expressions) on blade directives, example ```blade @hasanyrole(['admin', 'manager']) @endhasanyrole @hasallroles(['admin', 'manager']) @endhasallroles ``` Without this PR...