mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
22 lines
414 B
PHP
Executable File
22 lines
414 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Installation;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
class LanguagesController extends Controller
|
|
{
|
|
/**
|
|
* Display the languages page.
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function languages()
|
|
{
|
|
return response()->json([
|
|
'languages' => config('invoiceshelf.languages'),
|
|
]);
|
|
}
|
|
}
|