Logan
Results
2
comments of
Logan
@cb3inco I have mounted the icon to the container before. ``` volumes: - ~/bookstack/config:/config - ./favicon.ico:/var/www/html/public/favicon.ico ``` When I comment it, it worked!
@masterix21 The create function needs to be overridden as well. ```php namespace App\Notifications\Concerns; class FcmMessage extends \NotificationChannels\Fcm\FcmMessage { public static function create(): self { return new self; } public function...