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/f461b09d08f54e47f5243d0a91c6638473defd6d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
14 additions and
8 deletions
public/frontend/css/style.css
resources/views/admin/enquiry/show.blade.php
resources/views/enquiry-form.blade.php
resources/views/enquiry_mail.blade.php
@ -263,10 +263,15 @@ Responsive Codes
}
. top-links a {
color : # 326CBF ;
font-weight : 500 ;
font-weight : bold ;
font-size : 16px ;
line-height : 24px ;
}
text-decoration : none ;
}
. top-links a : hover {
text-decoration : underline ;
color : # d933a2 ;
}
. top-links h2 {
text-decoration : none ;
font-weight : 500 ;
@ -145,10 +145,12 @@
< span > Desired Study Field:< / span >
< span > {{$enquiry->desired_study_field ?? 'N/A'}} < / span >
< / li >
@if(!is_null($enquiry->desired_location))
< li class = "d-flex" >
< span > Desired Location:< / span >
< span > {{$enquiry->desired_location ?? 'N/A' }} < / span >
< span > {{config('custom.states')[$enquiry->desired_location] }} < / span >
< / li >
@endif
< / ul >
< / div >
@ -248,10 +248,9 @@
< label for = "name" > Desired location (If Any)< / label >
< select class = "form-select" name = "desired_location" id = "desired-location" >
< option hidden > Select your desired location< / option >
< option value = "au" class = "select-placeholder" > Australia< / option >
< option value = "nz" class = "select-placeholder" > New Zeland< / option >
< option value = "ca" class = "select-placeholder" > Canada< / option >
< option value = "us" class = "select-placeholder" > USA< / option >
@foreach(config('custom.states') as $in => $val)
< option value = "{{$in}}" @ if ( old ( ' desired_location ' ) = = $ in ) selected @ endif > {{$val}}< / option >
@endforeach
< / select >
< / div >
< / div >
@ -69,7 +69,7 @@
< b > Desired Field of Study:< / b > {{ $enquiry->desired_study_field }}< br / > < br / >
@endif
@if(!is_null($enquiry->desired_location))
< b > Desired Location:< / b > {{ $enquiry->desired_location }}< br / > < br / >
< b > Desired Location:< / b > {{ config('custom.states')[ $enquiry->desired_location] }}< br / > < br / >
@endif
< / div >
< / div >