flexisip-account-manager/flexiapi/app/Http/Controllers/Api/PhoneCountryController.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();
}
}