├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ ├── fix-php-code-styling.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── 3x1io-tomato-docs.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── arts ├── .gitkeep ├── 3x1io-tomato-docs.jpg ├── create-document.png ├── create-template.png ├── document-action.png ├── document-relation.png ├── documents-filters.png ├── documents.png ├── edit-template-icon.png ├── edit-template-vars.png ├── edit-template.png ├── generate-document.png ├── generate-notification.png ├── print-document.png └── templates.png ├── composer.json ├── composer.lock ├── config ├── .gitkeep └── filament-docs.php ├── database └── migrations │ ├── .gitkeep │ ├── 2024_02_29_113840_create_document_templates_table.php │ ├── 2024_02_29_113841_create_document_template_metas_table.php │ └── 2024_02_29_124019_create_documents_table.php ├── module.json ├── phpunit.xml ├── pint.json ├── publish └── public │ └── css │ └── filament-docs.css ├── resources ├── js │ └── .gitkeep ├── lang │ ├── .gitkeep │ ├── ar │ │ └── messages.php │ └── en │ │ └── messages.php └── views │ ├── .gitkeep │ ├── layout.blade.php │ └── print.blade.php ├── src ├── Console │ ├── .gitkeep │ └── FilamentDocsInstall.php ├── Facades │ └── FilamentDocs.php ├── Filament │ ├── Actions │ │ ├── DocumentAction.php │ │ ├── Notifications │ │ │ └── PrintAction.php │ │ ├── PrintAction.php │ │ └── Table │ │ │ └── PrintAction.php │ ├── RelationManager │ │ └── DocumentRelationManager.php │ └── Resources │ │ ├── DocumentResource.php │ │ ├── DocumentResource │ │ └── Pages │ │ │ ├── CreateDocument.php │ │ │ ├── EditDocument.php │ │ │ ├── ListDocuments.php │ │ │ └── PrintDocument.php │ │ ├── DocumentTemplateResource.php │ │ └── DocumentTemplateResource │ │ └── Pages │ │ ├── CreateDocumentTemplate.php │ │ ├── EditDocumentTemplate.php │ │ └── ListDocumentTemplates.php ├── FilamentDocsPlugin.php ├── FilamentDocsServiceProvider.php ├── Models │ ├── .gitkeep │ ├── Document.php │ ├── DocumentTemplate.php │ └── DocumentTemplateVar.php ├── Services │ ├── Contracts │ │ └── DocsVar.php │ └── FilamentDocsServices.php └── Traits │ └── InteractsWithDocs.php ├── testbench.yaml └── tests ├── Pest.php ├── database ├── database.sqlite └── factories │ ├── DocumentFactory.php │ ├── DocumentTemplateFactory.php │ ├── DocumentTemplateVarFactory.php │ └── UserFactory.php └── src ├── AdminPanelProvider.php ├── DebugTest.php ├── DocumentResourceTest.php ├── Models ├── Document.php ├── DocumentTemplate.php ├── DocumentTemplateVar.php └── User.php ├── PluginTest.php └── TestCase.php /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [3x1io] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/fix-php-code-styling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/workflows/fix-php-code-styling.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /3x1io-tomato-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/3x1io-tomato-docs.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arts/3x1io-tomato-docs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/3x1io-tomato-docs.jpg -------------------------------------------------------------------------------- /arts/create-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/create-document.png -------------------------------------------------------------------------------- /arts/create-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/create-template.png -------------------------------------------------------------------------------- /arts/document-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/document-action.png -------------------------------------------------------------------------------- /arts/document-relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/document-relation.png -------------------------------------------------------------------------------- /arts/documents-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/documents-filters.png -------------------------------------------------------------------------------- /arts/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/documents.png -------------------------------------------------------------------------------- /arts/edit-template-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/edit-template-icon.png -------------------------------------------------------------------------------- /arts/edit-template-vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/edit-template-vars.png -------------------------------------------------------------------------------- /arts/edit-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/edit-template.png -------------------------------------------------------------------------------- /arts/generate-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/generate-document.png -------------------------------------------------------------------------------- /arts/generate-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/generate-notification.png -------------------------------------------------------------------------------- /arts/print-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/print-document.png -------------------------------------------------------------------------------- /arts/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/arts/templates.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/filament-docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/config/filament-docs.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2024_02_29_113840_create_document_templates_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/database/migrations/2024_02_29_113840_create_document_templates_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_29_113841_create_document_template_metas_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/database/migrations/2024_02_29_113841_create_document_template_metas_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_29_124019_create_documents_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/database/migrations/2024_02_29_124019_create_documents_table.php -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/module.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/pint.json -------------------------------------------------------------------------------- /publish/public/css/filament-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/publish/public/css/filament-docs.css -------------------------------------------------------------------------------- /resources/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/ar/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/resources/lang/ar/messages.php -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/resources/views/layout.blade.php -------------------------------------------------------------------------------- /resources/views/print.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/resources/views/print.blade.php -------------------------------------------------------------------------------- /src/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Console/FilamentDocsInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Console/FilamentDocsInstall.php -------------------------------------------------------------------------------- /src/Facades/FilamentDocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Facades/FilamentDocs.php -------------------------------------------------------------------------------- /src/Filament/Actions/DocumentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Actions/DocumentAction.php -------------------------------------------------------------------------------- /src/Filament/Actions/Notifications/PrintAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Actions/Notifications/PrintAction.php -------------------------------------------------------------------------------- /src/Filament/Actions/PrintAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Actions/PrintAction.php -------------------------------------------------------------------------------- /src/Filament/Actions/Table/PrintAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Actions/Table/PrintAction.php -------------------------------------------------------------------------------- /src/Filament/RelationManager/DocumentRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/RelationManager/DocumentRelationManager.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentResource.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentResource/Pages/CreateDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentResource/Pages/CreateDocument.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentResource/Pages/EditDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentResource/Pages/EditDocument.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentResource/Pages/ListDocuments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentResource/Pages/ListDocuments.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentResource/Pages/PrintDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentResource/Pages/PrintDocument.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentTemplateResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentTemplateResource.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentTemplateResource/Pages/CreateDocumentTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentTemplateResource/Pages/CreateDocumentTemplate.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentTemplateResource/Pages/EditDocumentTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentTemplateResource/Pages/EditDocumentTemplate.php -------------------------------------------------------------------------------- /src/Filament/Resources/DocumentTemplateResource/Pages/ListDocumentTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Filament/Resources/DocumentTemplateResource/Pages/ListDocumentTemplates.php -------------------------------------------------------------------------------- /src/FilamentDocsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/FilamentDocsPlugin.php -------------------------------------------------------------------------------- /src/FilamentDocsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/FilamentDocsServiceProvider.php -------------------------------------------------------------------------------- /src/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Models/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Models/Document.php -------------------------------------------------------------------------------- /src/Models/DocumentTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Models/DocumentTemplate.php -------------------------------------------------------------------------------- /src/Models/DocumentTemplateVar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Models/DocumentTemplateVar.php -------------------------------------------------------------------------------- /src/Services/Contracts/DocsVar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Services/Contracts/DocsVar.php -------------------------------------------------------------------------------- /src/Services/FilamentDocsServices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Services/FilamentDocsServices.php -------------------------------------------------------------------------------- /src/Traits/InteractsWithDocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/src/Traits/InteractsWithDocs.php -------------------------------------------------------------------------------- /testbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/testbench.yaml -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/database/database.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/database/database.sqlite -------------------------------------------------------------------------------- /tests/database/factories/DocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/database/factories/DocumentFactory.php -------------------------------------------------------------------------------- /tests/database/factories/DocumentTemplateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/database/factories/DocumentTemplateFactory.php -------------------------------------------------------------------------------- /tests/database/factories/DocumentTemplateVarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/database/factories/DocumentTemplateVarFactory.php -------------------------------------------------------------------------------- /tests/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/database/factories/UserFactory.php -------------------------------------------------------------------------------- /tests/src/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/AdminPanelProvider.php -------------------------------------------------------------------------------- /tests/src/DebugTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/DebugTest.php -------------------------------------------------------------------------------- /tests/src/DocumentResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/DocumentResourceTest.php -------------------------------------------------------------------------------- /tests/src/Models/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/Models/Document.php -------------------------------------------------------------------------------- /tests/src/Models/DocumentTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/Models/DocumentTemplate.php -------------------------------------------------------------------------------- /tests/src/Models/DocumentTemplateVar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/Models/DocumentTemplateVar.php -------------------------------------------------------------------------------- /tests/src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/Models/User.php -------------------------------------------------------------------------------- /tests/src/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/PluginTest.php -------------------------------------------------------------------------------- /tests/src/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/filament-docs/HEAD/tests/src/TestCase.php --------------------------------------------------------------------------------