Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/ET-VISA/blame/commit/caf5ee405b5af24b9246fdda7bd1f904c2123cad/app/Http/Controllers/StudyAbroadController.php
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Models\Service;
|
|
|
|
|
|
|
|
class StudyAbroadController extends Controller
|
|
|
|
{
|
|
|
|
public function study_abroad(){
|
|
|
|
$services = Service::where('status',1)->get();
|
|
|
|
return view('study-abroad',compact('services'));
|
|
|
|
}
|
|
|
|
}
|