mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
24 lines
454 B
PHP
24 lines
454 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use InvoiceShelf\Models\Setting;
|
|
|
|
class AppVersionController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function __invoke(Request $request)
|
|
{
|
|
$version = Setting::getSetting('version');
|
|
|
|
return response()->json([
|
|
'version' => $version,
|
|
]);
|
|
}
|
|
}
|