changes
This commit is contained in:
parent
ef227fce6b
commit
9d3e9cef7a
@ -32,7 +32,6 @@ class WebsiteController extends Controller
|
|||||||
$headerMenuItems = Menuitems::where('menulocations_id', $headerMenu->menulocation_id)->where('status','<>',-1)->where('parent_menu', 0)->with('children')->orderBy('display_order', 'asc')->get();
|
$headerMenuItems = Menuitems::where('menulocations_id', $headerMenu->menulocation_id)->where('status','<>',-1)->where('parent_menu', 0)->with('children')->orderBy('display_order', 'asc')->get();
|
||||||
$footerMenu = Menulocations::where('alias', 'footer-menu')->first();
|
$footerMenu = Menulocations::where('alias', 'footer-menu')->first();
|
||||||
$footerMenuItems = Menuitems::where('menulocations_id', $footerMenu->menulocation_id)->where('status','<>',-1)->where('parent_menu', 0)->with('children')->orderBy('display_order', 'asc')->get();
|
$footerMenuItems = Menuitems::where('menulocations_id', $footerMenu->menulocation_id)->where('status','<>',-1)->where('parent_menu', 0)->with('children')->orderBy('display_order', 'asc')->get();
|
||||||
// dd($footerMenuItems);
|
|
||||||
$popularNews = News::inRandomOrder()->inRandomOrder()->take(3)->get();
|
$popularNews = News::inRandomOrder()->inRandomOrder()->take(3)->get();
|
||||||
View::share([
|
View::share([
|
||||||
'headerMenuItems' => $headerMenuItems,
|
'headerMenuItems' => $headerMenuItems,
|
||||||
|
8096
public/topCargo/assets/css/bootstrap.css
vendored
8096
public/topCargo/assets/css/bootstrap.css
vendored
File diff suppressed because one or more lines are too long
@ -1177,7 +1177,7 @@ div.aligncenter,
|
|||||||
background-color: #161616;
|
background-color: #161616;
|
||||||
}
|
}
|
||||||
.page-header h1 {
|
.page-header h1 {
|
||||||
color: #fff;
|
color: #0a0a0a;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -1192,7 +1192,7 @@ div.aligncenter,
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
position: relative;
|
position: relative;
|
||||||
background:url(../images/bg/page-header-bg.jpg) center center no-repeat fixed;background-size:cover;
|
background:url(../images/bg/page-header-banner.png) center center no-repeat fixed;background-size:cover;
|
||||||
}
|
}
|
||||||
.page-header .breadcrumb-area {
|
.page-header .breadcrumb-area {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
BIN
public/topCargo/assets/images/bg/.DS_Store
vendored
Normal file
BIN
public/topCargo/assets/images/bg/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
public/topCargo/assets/images/bg/page-header-banner.jpg
Normal file
BIN
public/topCargo/assets/images/bg/page-header-banner.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 190 KiB |
BIN
public/topCargo/assets/images/bg/page-header-banner.png
Normal file
BIN
public/topCargo/assets/images/bg/page-header-banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 973 KiB |
9
public/topCargo/assets/js/bootstrap.min.js
vendored
9
public/topCargo/assets/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
@ -5,4 +5,4 @@
|
|||||||
* Copyright (c) 2009 Michael Hixson
|
* Copyright (c) 2009 Michael Hixson
|
||||||
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
(function($){$.fn.appear=function(f,o){var s=$.extend({one:true},o);return this.each(function(){var t=$(this);t.appeared=false;if(!f){t.trigger('appear',s.data);return;}var w=$(window);var c=function(){if(!t.is(':visible')){t.appeared=false;return;}var a=w.scrollLeft();var b=w.scrollTop();var o=t.offset();var x=o.left;var y=o.top;if(y+t.height()>=b&&y<=b+w.height()&&x+t.width()>=a&&x<=a+w.width()){if(!t.appeared)t.trigger('appear',s.data);}else{t.appeared=false;}};var m=function(){t.appeared=true;if(s.one){w.unbind('scroll',c);var i=$.inArray(c,$.fn.appear.checks);if(i>=0)$.fn.appear.checks.splice(i,1);}f.apply(this,arguments);};if(s.one)t.one('appear',s.data,m);else t.bind('appear',s.data,m);w.scroll(c);$.fn.appear.checks.push(c);(c)();});};$.extend($.fn.appear,{checks:[],timeout:null,checkAll:function(){var l=$.fn.appear.checks.length;if(l>0)while(l--)($.fn.appear.checks[l])();},run:function(){if($.fn.appear.timeout)clearTimeout($.fn.appear.timeout);$.fn.appear.timeout=setTimeout($.fn.appear.checkAll,20);}});$.each(['append','prepend','after','before','attr','removeAttr','addClass','removeClass','toggleClass','remove','css','show','hide'],function(i,n){var u=$.fn[n];if(u){$.fn[n]=function(){var r=u.apply(this,arguments);$.fn.appear.run();return r;}}});})(jQuery);
|
(function ($) { $.fn.appear = function (f, o) { var s = $.extend({ one: true }, o); return this.each(function () { var t = $(this); t.appeared = false; if (!f) { t.trigger('appear', s.data); return; } var w = $(window); var c = function () { if (!t.is(':visible')) { t.appeared = false; return; } var a = w.scrollLeft(); var b = w.scrollTop(); var o = t.offset(); var x = o.left; var y = o.top; if (y + t.height() >= b && y <= b + w.height() && x + t.width() >= a && x <= a + w.width()) { if (!t.appeared) t.trigger('appear', s.data); } else { t.appeared = false; } }; var m = function () { t.appeared = true; if (s.one) { w.unbind('scroll', c); var i = $.inArray(c, $.fn.appear.checks); if (i >= 0) $.fn.appear.checks.splice(i, 1); } f.apply(this, arguments); }; if (s.one) t.one('appear', s.data, m); else t.bind('appear', s.data, m); w.scroll(c); $.fn.appear.checks.push(c); (c)(); }); }; $.extend($.fn.appear, { checks: [], timeout: null, checkAll: function () { var l = $.fn.appear.checks.length; if (l > 0) while (l--) ($.fn.appear.checks[l])(); }, run: function () { if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout); $.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20); } }); $.each(['append', 'prepend', 'after', 'before', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'remove', 'css', 'show', 'hide'], function (i, n) { var u = $.fn[n]; if (u) { $.fn[n] = function () { var r = u.apply(this, arguments); $.fn.appear.run(); return r; } } }); })(jQuery);
|
@ -3,14 +3,6 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/2.0.5/css/dataTables.dataTables.css" />
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/2.0.5/css/dataTables.dataTables.css" />
|
||||||
@endpush
|
@endpush
|
||||||
@section('content')
|
@section('content')
|
||||||
{{-- <style>
|
|
||||||
.page-content {
|
|
||||||
|
|
||||||
background: url({{ asset('assets/images/admin-bg.jpg') }});
|
|
||||||
background-size: contain;
|
|
||||||
height:100vh;
|
|
||||||
}
|
|
||||||
</style> --}}
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xl-3 col-md-6">
|
<div class="col-xl-3 col-md-6">
|
||||||
@ -21,11 +13,6 @@
|
|||||||
<div class="flex-grow-1 overflow-hidden">
|
<div class="flex-grow-1 overflow-hidden">
|
||||||
<p class="text-uppercase fw-medium text-muted text-truncate mb-0"> Articles</p>
|
<p class="text-uppercase fw-medium text-muted text-truncate mb-0"> Articles</p>
|
||||||
</div>
|
</div>
|
||||||
{{-- <div class="flex-shrink-0">
|
|
||||||
<h5 class="text-success fs-14 mb-0">
|
|
||||||
<i class="ri-arrow-right-up-line fs-13 align-middle"></i> +16.24 %
|
|
||||||
</h5>
|
|
||||||
</div> --}}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex align-items-end justify-content-between mt-4">
|
<div class="d-flex align-items-end justify-content-between mt-4">
|
||||||
<div>
|
<div>
|
||||||
@ -51,11 +38,6 @@
|
|||||||
<div class="flex-grow-1 overflow-hidden">
|
<div class="flex-grow-1 overflow-hidden">
|
||||||
<p class="text-uppercase fw-medium text-muted text-truncate mb-0">Teams</p>
|
<p class="text-uppercase fw-medium text-muted text-truncate mb-0">Teams</p>
|
||||||
</div>
|
</div>
|
||||||
{{-- <div class="flex-shrink-0">
|
|
||||||
<h5 class="text-danger fs-14 mb-0">
|
|
||||||
<i class="ri-arrow-right-down-line fs-13 align-middle"></i> -3.57 %
|
|
||||||
</h5>
|
|
||||||
</div> --}}
|
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex align-items-end justify-content-between mt-4">
|
<div class="d-flex align-items-end justify-content-between mt-4">
|
||||||
<div>
|
<div>
|
||||||
|
@ -89,25 +89,14 @@
|
|||||||
<div class="collapse menu-dropdown" id="sidebarMenu">
|
<div class="collapse menu-dropdown" id="sidebarMenu">
|
||||||
<ul class="nav nav-sm flex-column">
|
<ul class="nav nav-sm flex-column">
|
||||||
{{MPCMS::createMenuLink("Company Articles",route('companyarticles.index'))}}
|
{{MPCMS::createMenuLink("Company Articles",route('companyarticles.index'))}}
|
||||||
{{-- {{MPCMS::createMenuLink("Recruitment Articles",route('recruitmentarticles.index'))}} --}}
|
|
||||||
{{-- {{MPCMS::createMenuLink("Other Articles",route('otherarticles.index'))}} --}}
|
|
||||||
{{MPCMS::createMenuLink("Services",route('services.index'))}}
|
{{MPCMS::createMenuLink("Services",route('services.index'))}}
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{MPCMS::createMenuLink("Teams",route('teams.index'))}}
|
{{MPCMS::createMenuLink("Teams",route('teams.index'))}}
|
||||||
{{-- {{MPCMS::createMenuLink("Countries",route('countries.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("Companies",route('companies.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("License & Permits",route('certificates.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("Job Categories",route('job_categories.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("Job Demands",route('jobdemands.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("Paper Demands",route('paperdemands.index'))}} --}}
|
|
||||||
{{MPCMS::createMenuLink("Sliders",route('sliders.index'))}}
|
{{MPCMS::createMenuLink("Sliders",route('sliders.index'))}}
|
||||||
{{-- {{MPCMS::createMenuLink("Image Galleries",route('galleries.index'))}}
|
|
||||||
{{MPCMS::createMenuLink("Photos",route('photos.index'))}} --}}
|
|
||||||
{{MPCMS::createMenuLink("News/Blogs",route('backendnews.index'))}}
|
{{MPCMS::createMenuLink("News/Blogs",route('backendnews.index'))}}
|
||||||
{{-- {{MPCMS::createMenuLink("Contact Details",route('contacts.index'))}} --}}
|
|
||||||
{{MPCMS::createMenuLink("Testimonials",route('testimonials.index'))}}
|
{{MPCMS::createMenuLink("Testimonials",route('testimonials.index'))}}
|
||||||
{{MPCMS::createMenuLink("Franchises",route('franchises.index'))}}
|
{{MPCMS::createMenuLink("Franchises",route('franchises.index'))}}
|
||||||
{{MPCMS::createMenuLink("Partners",route('partners.index'))}}
|
{{MPCMS::createMenuLink("Partners",route('partners.index'))}}
|
||||||
|
@ -76,7 +76,8 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
@else
|
@else
|
||||||
<li><a @if($menuItem->title =="Quote") class = "fh-btn btn" style="color:white;"@endif href="{{ $menuItem->link }}">{{ $menuItem->title }}</a></li>
|
<li><a @if ($menuItem->title == 'Quote') class = "fh-btn btn" style="color:white;" @endif
|
||||||
|
href="{{ $menuItem->link }}">{{ $menuItem->title }}</a></li>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
</ul>
|
</ul>
|
||||||
@ -84,12 +85,19 @@
|
|||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
{{-- <div class="col-xl-3 col-lg-3 col-md-3">
|
||||||
|
<div class="headerarea__right">
|
||||||
|
<div class="headerarea__button">
|
||||||
|
<a href="{{ route('contact') }}">Contact Us</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div> --}}
|
||||||
</div>
|
</div>
|
||||||
<a href="#" class="navbar-toggle">
|
{{-- <a href="#" class="navbar-toggle">
|
||||||
<span class="navbar-icon">
|
<span class="navbar-icon">
|
||||||
<span class="navbars-line"></span>
|
<span class="navbars-line"></span>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a> --}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -117,23 +117,6 @@
|
|||||||
@endif
|
@endif
|
||||||
@empty
|
@empty
|
||||||
@endforelse
|
@endforelse
|
||||||
|
|
||||||
{{-- <div class="panel panel-default">
|
|
||||||
<div class="panel-heading">
|
|
||||||
<h4 class="panel-title">
|
|
||||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion"
|
|
||||||
href="#collapseThree">
|
|
||||||
Advanced Technology
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
<div id="collapseThree" class="panel-collapse collapse">
|
|
||||||
<div class="panel-body">
|
|
||||||
We leverage advanced technology and digital tools for efficient cargo tracking,
|
|
||||||
real-time monitoring, and documentation management, providing our clients with
|
|
||||||
visibility and control over their shipments. </div>
|
|
||||||
</div>
|
|
||||||
</div> --}}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Http\Controllers\CustomfieldsController;
|
use App\Http\Controllers\CustomfieldsController;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
Route::prefix("customfields")->group(function () {
|
Route::prefix("customfields")->group(function () {
|
||||||
Route::get('/', [CustomfieldsController::class, 'index'])->name('customfields.index');
|
Route::get('/', [CustomfieldsController::class, 'index'])->name('customfields.index');
|
||||||
Route::get('/create', [CustomfieldsController::class, 'create'])->name('customfields.create');
|
Route::get('/create', [CustomfieldsController::class, 'create'])->name('customfields.create');
|
||||||
Route::post('/store', [CustomfieldsController::class, 'store'])->name('customfields.store');
|
Route::post('/store', [CustomfieldsController::class, 'store'])->name('customfields.store');
|
||||||
Route::post('/sort', [CustomfieldsController::class, 'sort'])->name('customfields.sort');
|
Route::post('/sort', [CustomfieldsController::class, 'sort'])->name('customfields.sort');
|
||||||
Route::post('/updatealias', [CustomfieldsController::class, 'updatealias'])->name('customfields.updatealias');
|
Route::post('/updatealias', [CustomfieldsController::class, 'updatealias'])->name('customfields.updatealias');
|
||||||
Route::get('/show/{id}', [CustomfieldsController::class, 'show'])->name('customfields.show');
|
Route::get('/show/{id}', [CustomfieldsController::class, 'show'])->name('customfields.show');
|
||||||
Route::get('/edit/{id}', [CustomfieldsController::class, 'edit'])->name('customfields.edit') ;
|
Route::get('/edit/{id}', [CustomfieldsController::class, 'edit'])->name('customfields.edit');
|
||||||
Route::post('/update/{id}', [CustomfieldsController::class, 'update'])->name('customfields.update');
|
Route::post('/update/{id}', [CustomfieldsController::class, 'update'])->name('customfields.update');
|
||||||
Route::delete('/destroy/{id}', [CustomfieldsController::class, 'destroy'])->name('customfields.destroy');
|
Route::delete('/destroy/{id}', [CustomfieldsController::class, 'destroy'])->name('customfields.destroy');
|
||||||
});
|
});
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user