- Added DocumentController for handling document uploads and management. - Created Document model with necessary attributes and relationships. - Implemented DocumentService for business logic related to documents. - Set up routes for document management in both web and API contexts. - Developed views for document upload using Dropzone for file handling. - Included necessary assets and styles for the Document module. - Created migration for documents table with appropriate fields. - Added configuration and service provider for the Document module.
16 lines
264 B
JSON
16 lines
264 B
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build"
|
|
},
|
|
"devDependencies": {
|
|
"axios": "^1.1.2",
|
|
"laravel-vite-plugin": "^0.7.5",
|
|
"sass": "^1.69.5",
|
|
"postcss": "^8.3.7",
|
|
"vite": "^4.0.0"
|
|
}
|
|
}
|