mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
14 lines
232 B
PHP
14 lines
232 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\PhoneCountry;
|
|
|
|
class PhoneCountryController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return PhoneCountry::all();
|
|
}
|
|
}
|