David Carr

Results 83 comments of David Carr

okay I'll see if i can replicate the issue on this demo project https://github.com/laravel-modules-com/breeze-demo

I think this update solves the issue when stopping all modules needing a vite config. Please update your `vite-module-loader.js` file ```js import fs from 'fs/promises'; import path from 'path'; async...

Hi yes, I have this in the admin side, I've just noticed its missing from my docs, I will need to add that. Happy to receive your PR. I'm in...

I've just released https://github.com/dcblogdev/laravel-microsoft-graph/releases/tag/v3.2.0. the only changes required are updating the listener to the following if you're using the provided listener. ```php

> Perhaps instead of editing this file, I would create a migration like 'update_sent_emails_table.php' where I would add this column, allowing those who already have the component installed to run...

thanks, @twocngdagz really helpful reply! Working on improving the filtering and managed to get this working without altering the public API ```php Xero::contacts()->get(1, ['where' => 'ContactID==Guid("74ea95ea-6e1e-435d-9c30-0dff8ae1bd80")']); ``` Still testing this...

addressed this using a new filter option https://github.com/dcblogdev/laravel-xero/pull/61

Re-opened the vite issues as I don't believe its fully solved yet, that's why I haven't updated the docs yet. The current implementation appears to work for using inside a...

this is still an issue, there is not currently a way to built asserts from the root Vite config in the project root that will use modules Vite files. Ideally...

I've tried to combine vite configs this loads all the configs together but I think the laravel js helper overrides each time resulting in a single entry being generated inside...