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/commit/ca5565d448e2a80ee255e22aa660668606c2b4ee?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
resources/views/layout/app.blade.php
@ -4,6 +4,7 @@
< meta charset = "UTF-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" / >
< meta name = "csrf-token" content = "{{ csrf_token() }}" / >
< meta name = "theme-color" content = "#296AC7" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
@yield('title')
< link rel = "icon" href = "{{url('frontend/icons/favicon.ico')}}" >
@ -186,7 +187,7 @@
< ul class = "list-unstyled" >
< li >
@foreach($services as $service)
< a href = "{{url('education/'.$service->slug)}}" target = "_blank" rel = 'noreferrer' class = ' footer-link' >
< a href = "{{url('education/'.$service->slug)}}" class = ' footer-link' >
{{$service->name}}
< / a >
@endforeach
@ -201,7 +202,7 @@
< ul class = "list-unstyled" >
< li >
@foreach(App\Models\VisaService::where('status',1)->get() as $visa_service)
< a href = "{{url('/visa/'.$visa_service->slug)}}" target = "_blank" rel = 'noreferrer' class = ' footer-link' >
< a href = "{{url('/visa/'.$visa_service->slug)}}" class = ' footer-link' >
{{$visa_service->name}}
< / a >
@endforeach