change-in-index-page

aplus#36
Mahesh Sharma 2 years ago
parent ccb1885902
commit afe69b3ece
  1. 3
      app/Http/Controllers/HomeController.php
  2. BIN
      public/frontend/.DS_Store
  3. BIN
      public/frontend/icons/business-icon.png
  4. BIN
      public/images/testimonial/2022/12/06/07cc1afdbbe6c98fd67eefa227c746e2.jpeg
  5. BIN
      public/images/testimonial/2022/12/06/f9b27f203e5a9d44412c6b70510bbc3d.png
  6. 4
      resources/views/layout/app.blade.php
  7. 10
      resources/views/welcome.blade.php

@ -48,7 +48,8 @@ class HomeController extends Controller
$visa_success = Setting::where(['slug' => 'visa-success','status' => '1'])->first(); $visa_success = Setting::where(['slug' => 'visa-success','status' => '1'])->first();
$visa_approved = Setting::where(['slug' => 'visa-approved','status' => '1'])->first(); $visa_approved = Setting::where(['slug' => 'visa-approved','status' => '1'])->first();
$partner_institution = Setting::where(['slug' => 'partner-institutions','status' => '1'])->first(); $partner_institution = Setting::where(['slug' => 'partner-institutions','status' => '1'])->first();
return view('welcome',compact('services','sliders','about_us','news_and_updates','testimonials','phone','email','address','partners','visa_success','visa_approved','partner_institution','video')); $employers = Setting::where(['key' => 'employers','status' => '1'])->first();
return view('welcome',compact('services','sliders','about_us','news_and_updates','testimonials','phone','email','address','partners','visa_success','visa_approved','partner_institution','video','employers'));
} }
public function service(){ public function service(){

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 KiB

@ -121,8 +121,8 @@
<div class="visa-services"> <div class="visa-services">
<h2>Visa Services</h2> <h2>Visa Services</h2>
<ul> <ul>
@foreach($services as $service) @foreach($visa_services as $service)
<li><a href="{{url('/service/'.$service->slug)}}">{{$service->name}}</a></li> <li><a href="{{url('/visa_service/'.$service->slug)}}">{{$service->name}}</a></li>
@endforeach @endforeach
</ul> </ul>

@ -47,16 +47,16 @@
</div> </div>
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt=""> <img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}}</h5><span>(This year)</span> <h5>{{$visa_approved->value ?? ''}} <span>(This year)</span></h5>
</div> </div>
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt=""> <img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5> <h5>{{$partner_institution->value ?? ''}}</h5>
</div> </div>
<div class="achivement-sec"> <div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt=""> <img src="{{url('frontend/icons/business-icon.png')}}" alt="">
<h5>50+ Employers</h5> <h5>{{$employers->value ?? ''}}</h5>
</div> </div>
</div> </div>
</section> </section>
<!-- Achievement section --> <!-- Achievement section -->
@ -213,6 +213,7 @@
</section> </section>
<!-- news and update section --> <!-- news and update section -->
<!-- clients section --> <!-- clients section -->
@if(count($testimonials) > 0)
<section class="clients-section"> <section class="clients-section">
<div class="clients-header text-center"> <div class="clients-header text-center">
<h2>What our Clients say about us?</h2> <h2>What our Clients say about us?</h2>
@ -245,6 +246,7 @@
</div> </div>
</section> </section>
@endif
<!-- clients section --> <!-- clients section -->
<!-- cotact section --> <!-- cotact section -->
<section class="quick-enquiry-setion"> <section class="quick-enquiry-setion">

Loading…
Cancel
Save