Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/AplusAgency/commit/71ba48df89c9fb64a53ca9726d5635b2fd6e2485?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
8 additions and
8 deletions
BIN
public/frontend/.DS_Store
resources/views/contact.blade.php
resources/views/layout/app.blade.php
resources/views/need_chef.blade.php
resources/views/welcome.blade.php
@ -90,7 +90,7 @@
< select name = "service_id" id = "" class = "form-select" >
< option hidden value = '' > Choose service< / option >
@foreach($services as $service)
< option value = "{{$service->id}}" class = "aplus-display-select" > {{$service->name}}< / option >
< option value = "{{$service->id}}" class = "aplus-display-select" { { old ( ' service_id ' ) = = $ service- > id ? 'selected' : ''}}> {{$service->name}}< / option >
@endforeach
< / select >
< / div >
@ -176,7 +176,7 @@
< p > ABN : 97654871011 < / p >
< / div >
< div class = "copyright" >
< p > DICE © 2022. All Rights Reserved.< / p >
< p > APLUS © 2022. All Rights Reserved.< / p >
< / div >
< div class = "disclaimer" >
< p > < a href = "" > Disclaimer< / a > | < a href = "" > Privacy Policy< / a > < / p >
@ -65,7 +65,7 @@
< / div >
< div class = "mb-3" >
< label for = "" > Enquiry< / label >
< textarea type = "text" rows = "3" class = "form-control" placeholder = "Your enquiries.." name = "enquiry" id = "" > {{old('no_of_position ')}}< / textarea >
< textarea type = "text" rows = "3" class = "form-control" placeholder = "Your enquiries.." name = "enquiry" id = "" > {{old('enquiry ')}}< / textarea >
< / div >
@php
$code = Str::random(5);
@ -283,7 +283,7 @@
< img src = "{{url('frontend/icons/user-icon.svg')}}" alt = "" >
< / span >
< / div >
< input type = "text" name = "fullname" class = "form-control" placeholder = "Full Name" aria-label = "Fullname" aria-describedby = "basic-addon1" >
< input type = "text" name = "fullname" class = "form-control" placeholder = "Full Name" value = "{{old('fullname')}}" aria-label = "Fullname" aria-describedby = "basic-addon1" >
< / div >
< / div >
< div class = "col-md-6" >
@ -293,7 +293,7 @@
< img src = "{{url('frontend/icons/email-enquiry.svg')}}" alt = "" >
< / span >
< / div >
< input type = "email" name = "email" class = "form-control" placeholder = "Email" aria-label = "Email" aria-describedby = "basic-addon1" >
< input type = "email" name = "email" value = "{{old('email')}}" class = "form-control" placeholder = "Email" aria-label = "Email" aria-describedby = "basic-addon1" >
< / div >
< / div >
< div class = "col-md-6" >
@ -303,7 +303,7 @@
< img src = "{{url('frontend/icons/enq-phone-icon.svg')}}" alt = "" >
< / span >
< / div >
< input type = "text" name = "phone" class = "form-control" placeholder = "Phone" aria-label = "Phone" aria-describedby = "basic-addon1" >
< input type = "text" name = "phone" value = "{{old('phone')}}" class = "form-control" placeholder = "Phone" aria-label = "Phone" aria-describedby = "basic-addon1" >
< / div >
< / div >
< div class = "col-md-6" >
@ -316,7 +316,7 @@
< select class = "form-select" id = "inputGroupSelect01" name = "service_id" >
< option hidden > Choose Services< / option >
@foreach($services as $service)
< option value = "{{$service->id}}" >
< option value = "{{$service->id}}" { { old ( ' service_id ' ) = = $ service- > id ? 'selected' : ''}}>
{{$service->name}}
< / option >
@endforeach
@ -330,7 +330,7 @@
< img src = "{{url('frontend/icons/Chat_plus_light.svg')}}" alt = "" >
< / label >
< / div >
< textarea class = "form-control" id = "exampleFormControlTextarea1" rows = "3" placeholder = "Message" name = "message" > < / textarea >
< textarea class = "form-control" id = "exampleFormControlTextarea1" rows = "3" placeholder = "Message" name = "message" > {{old('message')}} < / textarea >
< / div >
< / div >
< div class = "col-md-12" >