Kacper Pruszynski
Kacper Pruszynski
Okay, thats sounds great - I can help you if you want :)
Of course - every directive must be class with implemented `__invoke` magic method. We can also publish config for directives in user application - that will be good enough and...
I think is router for pages is not necessary. Better solution is router for [AJAX actions](https://codex.wordpress.org/AJAX_in_Plugins) and [Rest API](https://developer.wordpress.org/rest-api/using-the-rest-api/) actions. Wordpress has good enough router system for pages, templates etc.
Of course - my code looks like: ```blade @image('header.section.photo' , 'full', []) ``` and rendered blade looks like ```php ``` So if I change image in Wordpress this change does...
@timonmasberg You should use `env` section to provide your GitHub token. ``` uses: cycjimmy/semantic-release-action@v4 env: GITHUB_TOKEN: ${{ github.token }} ```
I had the same issue and removing logger solved the issue.
I don't think so, that is a bug in client, but I can check it in a day.
@shyim I was using Laravel logger configured on config level like this: ```php 'opensearch' => [ 'days' => 7, 'driver' => 'daily', 'formatter' => JsonFormatter::class, 'level' => 'debug', 'path' =>...
I opened a discussion on Laravel community page: https://github.com/laravel/framework/discussions/52659 Maybe there is a solution 👀