khbd / laravel-view-to-json
Laravel view to json with automatically convert view to json. This api help you to build API. Laravel view to json is very simple configurable.
Requires
- php: ^7.2
This package is auto-updated.
Last update: 2025-01-06 20:13:56 UTC
README
Laravel View to JSON provide json response for API data.
Usage
Before sending request add ?response=json
to any url, you will get all the view data in JSON format.
Why?
When you have no time to create separate API but you want json data from view, this package will fulfil your requirement.
Installation
You can install the package via composer:
composer require khbd/laravel-view-to-json
The package will register itself automatically.
Then publish the package configuration file
php artisan vendor:publish --provider=Khbd\View2json\View2JsonServiceProvider
Older Laravel versions
If you can't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
.
Khbd\View2json\View2JsonServiceProvider::class
Usage
Before sending request add ?response=json
to any url, you will get all the view data in JSON format.