imagina/idocs-module

Installs: 166

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 7

Open Issues: 0

Type:asgard-module

1.0.4 2020-03-26 15:40 UTC

This package is auto-updated.

Last update: 2024-04-08 22:29:54 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.