This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\DataTables\Concerns; | |
use Illuminate\Contracts\Routing\ResponseFactory; | |
use Illuminate\Http\Response; | |
use Symfony\Component\HttpFoundation\BinaryFileResponse; | |
trait ExportableLargeData | |
{ | |
/** | |
* @var string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\Libs; | |
use GuzzleHttp\Client; | |
use Illuminate\Http\Request; | |
/** | |
* Class RestClient | |
* | |
* @package App\Services | |
*/ |