myerscode/laravel-sub-request

A helper and facade for making internal API sub requests to your application

8.0.1 2022-01-31 16:36 UTC

This package is auto-updated.

Last update: 2024-04-21 12:02:50 UTC


README

a helper and facade for making internal sub requests to your application API

Latest Stable Version Total Downloads License

By sending a sub request within the application, you can simply consume your applications API without having to send seperate, slower HTTP requests.

Install

You can install this package via composer:

composer require myerscode/laravel-sub-request

Setup

Laravel >=5.5

The package will be auto discovered.

Laravel 5.4

Add Myerscode\Laravel\SubRequest\SubRequestProvider to the providers array in config/app.php

Usage

In your controller you can inject the sub request component into your class or use the SubRequest facade or the global helper method subrequest.

namespace App\Controllers;

class MyController {
    
    public function __contstruct(Dispatcher $subRequest) {
        $this->subRequest = $subRequest;
    }
    
    public function routeOne() {
        return $this->subRequest->dispatch('POST', '/auth', ['foo' => 'bar'])
    }
    
    public function routeTwo() {
        return SubRequest::dispatch('GET', '/details', ['foo' => 'bar'])
    }
    
    public function routeThree() {
        return subrequest('GET', '/details', ['foo' => 'bar'])
    }
...
}