Aniket Das

Results 11 issues of Aniket Das

Laravel-Websockets not working over `HTTPS` on Laragon (Apache) Currently I'm using the default Laragon generated SSL certificate, I'm not sure how to add the SSL certificates with my Websocket. My...

Hi, I think the refund status api calling the wrong endpoint, it's calling the txn status endpoint noy the Refund Status endpoint. I'm doing like: ```php $refundStatus = PaytmWallet::with('refund_status'); $refundStatus->prepare([...

Hi 👋, First of all thank you for this amazing package. I Just started learning the basics of Elastic Search. I was trying to do filtering like this: ```php User::search("")->whereIn('id',...

### What happened? Hi 👋, I noticed a a weird behaviour while using typescript. Basically with the below code: ```ts const foo: string | null = null ``` I was...

bug

Hi, I'm very new to RainLoop I was trying to setup Rainloop SSO in my Laravel project. Basically, I store the IMAP credentials in my Laravel Backend application. And I...

- Added support for `whereNotIn` clause of [Laravel scout](https://laravel.com/docs/10.x/scout#where-clauses). ```php User::search($search) ->whereNotIn('id', [1, 2, 3]) ->get() ```

Hi 👋, Thank you so much for the amazing ecosystem of Elasticsearch packages 🤗. I see by default the `search` method is using query type `query_string`, I think this [`makeQuery`](https://github.com/babenkoivan/elastic-scout-driver/blob/485eb1fa671e9b907bcad78a4afba1ed481f47fb/src/Factories/SearchParametersFactory.php#L41-L64)...

feature

Hi, First of all thank you so much for the amazing package, I'm trying to implement it with `react-query` for a chat application. Basically, we need to first load most...

question

Hi, I was following your [tutorial](https://www.freecodecamp.org/news/build-strongly-typed-polymorphic-components-with-react-and-typescript/) Everything went perfectly, but I'm facing one slight problem. When I try to pass `as="input"` and use `onChange={(event) => ...}` It throws error: `Parameter...

In my application, I have `MessageThread` and `Message` model. This is the migration for `message_threads` table: ```php $table->string('sender_number', 15); $table->string('receiver_number', 15); $table->string('sender_number_receiver_number', 30)->virtualAs('CONCAT(`sender_number`, "-", `receiver_number`)'); $table->string('receiver_number', 30)->virtualAs('CONCAT(`receiver_number`, "-", `sender_number`)'); $table->string('contact_name',...