feat: Implement Document Module with Dropzone file upload functionality

- 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.
This commit is contained in:
2025-08-01 18:00:15 +05:45
parent 64592f5b96
commit efa9231391
39 changed files with 1831 additions and 69 deletions

View File

@@ -226,6 +226,13 @@ return [
],
],
[
'text' => 'Documents',
'url' => 'admin/document',
'icon' => 'ri-file-text-line',
'module' => 'Document',
'can' => ['document.index'],
],
[
'text' => 'Resume Builder',
'url' => 'admin/resume',