skip to Main Content

BadMethodCallException when using ralphjsmit/laravel-horizon-cron-supervisor package

When I update my project (compose update), I get the next error: $ composer update ... > IlluminateFoundationComposerScripts::postAutoloadDump > @php artisan package:discover --ansi BadMethodCallException Method IlluminateConsoleSchedulingEvent::tap does not exist. at vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113 109▕ */ 110▕ public function __call($method, $parameters) 111▕ {…

VIEW QUESTION

Laravel Cashier Stripe address information

I have a problem with providing the customers address information to stripe. This is my checkout process for the stripe hosted checkout process: $user = $request->user(); return $user->newSubscription(config('stripe.product'), $plan) ->allowPromotionCodes() ->checkout([ 'success_url' => route('success'), 'cancel_url' => route('dashboard'), 'customer' => […

VIEW QUESTION

Laravel – docker hangs at build

docker blocks when running the command: docker-compose build nginx php-fpm workspace mysql redis redis-webui adminer; gives the the following error: CACHED [workspace 50/116] RUN if [ false = true ]; then if [ 8.3 != "8.3" ] && [ 8.3…

VIEW QUESTION

Laravel – Difficulties in extracting content from a SimpleXMLElement

I have this xml bellow : "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>For input string: ""</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>" I want to get the content of Body > Fault > faultcode, faultstring But idk why doens't work My source code : $xml = "<?xml version='1.0'…

VIEW QUESTION
Back To Top
Search