mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
24 lines
543 B
PHP
24 lines
543 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers\V1\Admin\General;
|
|
|
|
use Illuminate\Http\Request;
|
|
use InvoiceShelf\Http\Controllers\Controller;
|
|
use InvoiceShelf\Http\Resources\CurrencyResource;
|
|
use InvoiceShelf\Models\Currency;
|
|
|
|
class CurrenciesController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function __invoke(Request $request)
|
|
{
|
|
$currencies = Currency::latest()->get();
|
|
|
|
return CurrencyResource::collection($currencies);
|
|
}
|
|
}
|