This commit is contained in:
tanch0 2024-06-04 16:10:03 +05:45
parent ef227fce6b
commit 9d3e9cef7a
15 changed files with 9561 additions and 66 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -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();
$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();
// dd($footerMenuItems);
$popularNews = News::inRandomOrder()->inRandomOrder()->take(3)->get();
View::share([
'headerMenuItems' => $headerMenuItems,

File diff suppressed because one or more lines are too long

View File

@ -1177,7 +1177,7 @@ div.aligncenter,
background-color: #161616;
}
.page-header h1 {
color: #fff;
color: #0a0a0a;
text-transform: capitalize;
font-weight: 600;
margin: 0;
@ -1192,7 +1192,7 @@ div.aligncenter,
text-align: center;
background-attachment: fixed;
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 {
background-color: #fff;

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 KiB

File diff suppressed because one or more lines are too long

View File

@ -5,4 +5,4 @@
* Copyright (c) 2009 Michael Hixson
* 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);

View File

@ -3,14 +3,6 @@
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/2.0.5/css/dataTables.dataTables.css" />
@endpush
@section('content')
{{-- <style>
.page-content {
background: url({{ asset('assets/images/admin-bg.jpg') }});
background-size: contain;
height:100vh;
}
</style> --}}
<div class="row">
<div class="col-xl-3 col-md-6">
@ -21,11 +13,6 @@
<div class="flex-grow-1 overflow-hidden">
<p class="text-uppercase fw-medium text-muted text-truncate mb-0"> Articles</p>
</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 class="d-flex align-items-end justify-content-between mt-4">
<div>
@ -51,11 +38,6 @@
<div class="flex-grow-1 overflow-hidden">
<p class="text-uppercase fw-medium text-muted text-truncate mb-0">Teams</p>
</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 class="d-flex align-items-end justify-content-between mt-4">
<div>

View File

@ -89,25 +89,14 @@
<div class="collapse menu-dropdown" id="sidebarMenu">
<ul class="nav nav-sm flex-column">
{{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'))}}
</ul>
</div>
</li>
{{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("Image Galleries",route('galleries.index'))}}
{{MPCMS::createMenuLink("Photos",route('photos.index'))}} --}}
{{MPCMS::createMenuLink("News/Blogs",route('backendnews.index'))}}
{{-- {{MPCMS::createMenuLink("Contact Details",route('contacts.index'))}} --}}
{{MPCMS::createMenuLink("Testimonials",route('testimonials.index'))}}
{{MPCMS::createMenuLink("Franchises",route('franchises.index'))}}
{{MPCMS::createMenuLink("Partners",route('partners.index'))}}

View File

@ -76,7 +76,8 @@
</ul>
</li>
@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
@endforeach
</ul>
@ -84,12 +85,19 @@
</nav>
</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>
<a href="#" class="navbar-toggle">
</div>
</div> --}}
</div>
{{-- <a href="#" class="navbar-toggle">
<span class="navbar-icon">
<span class="navbars-line"></span>
</span>
</a>
</a> --}}
</div>
</div>

View File

@ -117,23 +117,6 @@
@endif
@empty
@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>

View File

@ -1,6 +1,8 @@
<?php
use App\Http\Controllers\CustomfieldsController;
use Illuminate\Support\Facades\Route;
Route::prefix("customfields")->group(function () {
Route::get('/', [CustomfieldsController::class, 'index'])->name('customfields.index');
Route::get('/create', [CustomfieldsController::class, 'create'])->name('customfields.create');
@ -8,7 +10,7 @@ Route::prefix("customfields")->group(function () {
Route::post('/sort', [CustomfieldsController::class, 'sort'])->name('customfields.sort');
Route::post('/updatealias', [CustomfieldsController::class, 'updatealias'])->name('customfields.updatealias');
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::delete('/destroy/{id}', [CustomfieldsController::class, 'destroy'])->name('customfields.destroy');
});
});

File diff suppressed because it is too large Load Diff