Glenn Jacobs
Glenn Jacobs
In the code there are these comments... // is there ant merit in this being base_path()? // if it was base_path() then any image on the filesystem could be served...
This update provides access to the FullCalendar "resource" on select and drag events. This is useful when using the `resourceTimeline` and other similar plugins.
Collections require a relation manager for their associated products. The old "hub" offered sorting as below. However, we have decided that this doesn't work well, especially considering our recommendation to...
The new product option editing on product variants allowed for duplicate product option handles. This is to allow for both shared (global) and exclusive product options. This broke the following...
We need to update the admin panel to disable deleting of collections that have child collections.
Port existing Meilisearch package, making any improvements we feel necessary.
We have references to the admin hub in the core. This isn't going to break anything, but it's bad practice. See https://github.com/lunarphp/lunar/blob/0.4/packages/core/src/FieldTypes/TranslatedText.php#L82-L101
Following on from #721 If a product variant is deleted from the system, the cart needs to handle this. Although we could simply delete the cart line, this isn't a...
Seems when prices have `.00` the decimals do not show on price fields, specifically in this instance for Customer Group Pricing.
Example usage ```php use App\Models\ProductType; use Lunar\Facades\ModelManifest; use Lunar\Models\Contracts\ProductType as ProductTypeContract; public function boot(): void { ModelManifest::replace( ProductTypeContract::class, ProductType::class ); } ``` Explicit route model bindings are set in the...