erikn69

Results 113 comments of erikn69

>Also how to get back team_id on remember me functionality? Maybe this helps on laravel 9.x for "remember me" functionality https://github.com/laravel/framework/pull/42316 https://github.com/laravel/framework/pull/42615

You do it wrong Try to open this link https://laravel.com/docs/9.0/broadcasting Also it is better if you remove the `9.x`, example https://laravel.com/docs/broadcasting

Search on [dompdf/dompdf](https://github.com/dompdf/dompdf) Look https://github.com/dompdf/dompdf/issues/736

>PS. I wonder if this should be valid as well? I mean using Laravel collection I don't think so, but test it

collection of roles are supported, collection of strings(only name) are not supported ```blade @hasanyrole(Role::all()) Collection of roles works @endhasanyrole @hasanyrole(Role::whereIn('name', ['admin', 'manager'])->get()) Collection of roles works @endhasanyrole ```

I test `boot`, everything is working as expected

> I test boot, everything is working as expected Impossible to replicate >For the example application, you must follow the steps on documentation [laravel-permission/example-application](https://spatie.be/docs/laravel-permission/v5/basic-usage/new-app#breadcrumb) Make a demo app on a...

change https://github.com/beyondcode/laravel-websockets/blob/605a7fa71ddabfffe381b079acc21403c7547ea2/database/migrations/0000_00_00_000000_create_websockets_statistics_entries_table.php#L7 To ```php return new class extends Migration ``` Example: https://github.com/laravel/laravel/blob/9.x/database/migrations/2014_10_12_000000_create_users_table.php

Use nginx or apache redirection