Stelios Eglezos

Results 10 issues of Stelios Eglezos

### Laravel version 5.8 ### PHP version 7.1 ### Voyager version 1.2 ### Database MySQL 5.7 ### Description It displays an error on post request when trying to translate a...

possible bug

I have created this function inside CartController ``` private $cart_id; public function __construct() { $this->cart_id = \Cookie::get('cart'); if ($this->cart_id) { } else { $this->cart_id = uniqid(); $this->setCartCookie(); } } public...

I recently started using Turbolinks with pace.js to handle the initial page load and i'm facing a weird issue where sometimes Javascript doesn't get executed with no errors. ``` Pace.once('done',...

First of all thank you for creating this component, it works perfectly and it's beautiful. I would like to ask for a feature to add disabled dates, for example i...

Trying to validate a VAT number and i get this CORS error: > Access to fetch at 'https://ec.europa.eu/taxation_customs/vies/services/checkVatService' from origin 'https://domain.test' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header...

Hello, I'm trying to get orders after a specific date, for example i have written code like below: ``` $date = '2023-05-20T11:51:09'; $orders = WooOrder::where('date_created', '>=', $date)->get(); ``` This doesn't...

Is there any way to add the already saved SVG Signature to the Vue Signature component?

Hello, Is there any way to set cart session lifetime to specific hours? For example i would like to set the cart a lifetime of 2 hours. Thanks and regards.

I was trying to do some API requests after the uploading is finished and i noticed that ```@vdropzone-complete-multiple``` event is triggered multiple times. `````` Options: dropzoneOptions: { url: '/admin/files/upload', thumbnailWidth:...