11 lines
302 B
PHP
11 lines
302 B
PHP
<?php
|
|
require 'vendor/autoload.php';
|
|
$app = require_once 'bootstrap/app.php';
|
|
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
|
|
|
|
use App\Http\Controllers\Api\KontrakanController;
|
|
|
|
$controller = new KontrakanController();
|
|
$response = $controller->getRange();
|
|
echo $response->getContent();
|