wuwx/laravel-plus-view

v8.0.0 2023-07-18 12:58 UTC

README

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"