imagina / idocs-module
Installs: 204
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 7
Open Issues: 1
Type:asgard-module
Requires
- php: >=7.0.0
- composer/installers: ~1.0
- cviebrock/eloquent-sluggable: ~4.3
- idavoll/core-module: ~3.0
- maatwebsite/excel: ~3.1
Requires (Dev)
- orchestra/testbench: 3.5.*
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-11-11 20:47:30 UTC
README
The Docummnets module allows authorized users to maintain a blog. Blogs are a series of posts that are time stamped and are typically viewed by date as you would view a journal. Blog entries can be made public or private to the site members, depending on which roles have access to view content.
##Docuemnt API Services
##List documents
###all route
https://mydomain.com/api/idocs/v1/documents?
filters
filter={"categories":{1,2,3},"document":[1,3,2], }
The Maatwebsite\Excel\ExcelServiceProvider
is auto-discovered and registered by default.
If you want to register it yourself, add the ServiceProvider in config/app.php:
'providers' => [ /* * Package Service Providers... */ Maatwebsite\Excel\ExcelServiceProvider::class, ]
The Excel
facade is also auto-discovered.
If you want to add it manually, add the Facade in config/app.php:
'aliases' => [ ... 'Excel' => Maatwebsite\Excel\Facades\Excel::class, ]
To publish the config, run the vendor publish command:
php artisan vendor:publish --provider="Maatwebsite\Excel\ExcelServiceProvider
This will create a new config file named config/excel.php
.