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/6755783f663591786f70b830ab370603793f6fcf?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
27 additions and
10 deletions
public/frontend/css/style.css
BIN
public/images/news_and_update/2022/12/09/4157e604ba36c240337a7db058fcec7b.png
BIN
public/images/setting/2022/12/09/501a7deebf3f5e06018c0df16594bcda.png
resources/views/layout/app.blade.php
resources/views/welcome.blade.php
@ -484,6 +484,7 @@ Responsive Codes
width : 100 % ;
position : absolute ;
padding : 20px ;
border-radius : 0 0 8px 8px ;
bottom : 0 ;
}
. first-blog h5 , . first-blog p {
@ -752,13 +753,22 @@ Responsive Codes
list-style : none ;
padding-left : 0 ;
}
. visa-services ul li a , . recruitment ul li a , . quick-links ul li a {
. visa-services ul li a ,
. recruitment ul li a ,
. quick-links ul li a {
font-weight : 400 ;
font-size : 14px ;
color : # FFFFFF ;
line-height : 2rem ;
text-decoration : none ;
}
. visa-services ul li a : hover ,
. recruitment ul li a : hover ,
. quick-links ul li a : hover ,
. developed-by a : hover ,
. disclaimer a : hover {
color : # F54C5F ;
}
. footer-top :: after {
content : '' ;
border-bottom : 1px solid # 53676E ;
@ -772,7 +782,9 @@ Responsive Codes
display : flex ;
justify-content : space-between ;
}
. footer-bottom p {
. footer-bottom p ,
. disclaimer a {
text-decoration : none ;
font-weight : 400 ;
font-size : 13px ;
line-height : 1 . 8rem ;
@ -932,6 +944,11 @@ Responsive Codes
line-height : 21px ;
color : # FFFFFF ;
}
. submit-btn button : hover ,
. featured-news-desc a : hover ,
. chef-hire-form button : hover {
background : # 103E70 ;
}
. chef-hire-form input : focus ,
. chef-hire-form select : focus ,
. chef-hire-form textarea : focus ,
Width:
|
Height:
|
Size: 529 KiB
Width:
|
Height:
|
Size: 12 KiB
@ -141,7 +141,7 @@
< p > DICE © 2022. All Rights Reserved.< / p >
< / div >
< div class = "disclaimer" >
< p > Disclaimer|Privacy Policy < / p >
< p > < a href = "" > Disclaimer< / a > | < a href = "" > Privacy Policy< / a > < / p >
< / div >
< div class = "developed-by" >
< p > Design & Developed by: < a href = "https://www.extratechs.com.au/" target = "_blank" > Extratech< / a > < / p >
@ -35,15 +35,15 @@
< div class = "achievement-items" >
< div class = "achivement-sec" >
< img src = "{{url('frontend/icons/success-icon.svg')}}" class = "img-fluid" alt = "" >
< h5 > {{$visa_success->value}}< / h5 >
< h5 > {{$visa_success->value ?? '' }}< / h5 >
< / div >
< div class = "achivement-sec" >
< img src = "{{url('frontend/icons/visa-approved.svg')}}" alt = "" >
< h5 > {{$visa_approved->value}}< / h5 >
< h5 > {{$visa_approved->value ?? '' }}< / h5 >
< / div >
< div class = "achivement-sec" >
< img src = "{{url('frontend/icons/institution.svg')}}" alt = "" >
< h5 > {{$partner_institution->value}}< / h5 >
< h5 > {{$partner_institution->value ?? '' }}< / h5 >
< / div >
< / div >
< / section >
@ -159,13 +159,13 @@
< div class = "featured-news" >
< a href = "/news_detail" href = "" >
< div class = "featured-news-image" >
< img src = "{{url($news_and_updates->first()->image)}}" class = "w-100" alt = "" >
< img src = "{{url($news_and_updates->first()->image ?? '' )}}" class = "w-100" alt = "" >
< / div >
< div class = "featured-content" >
< p > {{$news_and_updates->first()->created_at}}< / p >
< h2 > {{$news_and_updates->first()->title}}< / h2 >
< p > {{$news_and_updates->first()->created_at ?? '' }}< / p >
< h2 > {{$news_and_updates->first()->title ?? '' }}< / h2 >
< div class = "featured-btn" >
< p href = "{{url('news/'.$news_and_updates->first()->slug)}}" > Read more< / p >
< p href = "{{url('news/'.$news_and_updates->first()->slug )}}" > Read more< / p >
< i class = "fa-solid fa-arrow-right-long" > < / i >
< / div >
< / div >