mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
24 lines
540 B
PHP
24 lines
540 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers\V1\Admin\Company;
|
|
|
|
use Illuminate\Http\Request;
|
|
use InvoiceShelf\Http\Controllers\Controller;
|
|
use InvoiceShelf\Http\Resources\CompanyResource;
|
|
use InvoiceShelf\Models\Company;
|
|
|
|
class CompanyController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function __invoke(Request $request)
|
|
{
|
|
$company = Company::find($request->header('company'));
|
|
|
|
return new CompanyResource($company);
|
|
}
|
|
}
|