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/src/commit/7e2d925af7d75015dca5e002cb42dec36d73c0d7/app/Http/Controllers/StudyAbroadController.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 

14 lines
299 B

<?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'));
}
}