wuwx / laravel-plus-view by wuwx

296
3
3
Package Data
Maintainer Username: wuwx
Maintainer Contact: wuweixin@gmail.com (Wu Weixin)
Package Create Date: 2017-07-05
Package Last Update: 2023-07-18
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:11:14
Package Statistics
Total Downloads: 296
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 3
Total Forks: 1
Total Open Issues: 0

laravel-plus-view

Latest Stable Version Total Downloads

Installation

Quick

To install through composer, simply run the following command:

composer require wuwx/laravel-plus-view

Add Service Provider

Next add the following service provider in config/app.php.

'providers' => [
    Wuwx\LaravelPlusView\LaravelPlusViewServiceProvider::class,
],

Add Blade Template

index.html.blade.php

<h1>{{ $dataTypeContent->title }}</h1>

index.json.blade.php

{!! json_encode($dataTypeContent) !!}

Test

curl http://localhost:8000/users
curl http://localhost:8000/users?_format=json
curl http://localhost:8000/users -H "Accept: application/json"