- Add `telecart_forms` table migration and default checkout form seeder - Implement `FormsHandler` to fetch form schemas - Update `OrderCreateService` to handle custom fields in order comments - Add `update` method to QueryBuilder and Grammar - Add `Arr::except` helper - Update composer dependencies (Carbon, Symfony, PHPUnit, etc.) - Improve `MigratorService` error handling - Add unit tests for new functionality
17 lines
338 B
JavaScript
17 lines
338 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
"./formkit.theme.mjs",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateRows: {
|
|
'[auto,auto,1fr]': 'auto auto 1fr',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("daisyui"),
|
|
],
|
|
}; |