From 9fa6a5d79720007756721d82c4fde70e31a0f1f1 Mon Sep 17 00:00:00 2001 From: tanch0 Date: Wed, 8 May 2024 14:02:40 +0545 Subject: [PATCH] Changes --- app/Http/Controllers/WebsiteController.php | 10 +- app/Models/News.php | 6 + app/Models/Scopes/StatusScope.php | 18 + .../topCargo/partials/master-head.blade.php | 2 +- .../partials/welcome/slider.blade.php | 46 +- .../partials/welcome/why-choose-us.blade.php | 48 +- .../client/topCargo/service-single.blade.php | 60 +- .../views/client/topCargo/teams.blade.php | 2 +- storage/logs/laravel.log | 1586 +++++++++++++++++ 9 files changed, 1681 insertions(+), 97 deletions(-) create mode 100644 app/Models/Scopes/StatusScope.php diff --git a/app/Http/Controllers/WebsiteController.php b/app/Http/Controllers/WebsiteController.php index cf0f4ae..d04f1cc 100644 --- a/app/Http/Controllers/WebsiteController.php +++ b/app/Http/Controllers/WebsiteController.php @@ -30,7 +30,6 @@ class WebsiteController extends Controller $this->path = config('app.client_path'); $headerMenu = Menulocations::where('alias', 'header-menu')->first(); $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); @@ -89,7 +88,7 @@ class WebsiteController extends Controller $data["sliders"] = Sliders::where('status', 1)->latest()->get(); $data["franchises"] = Franchises::latest()->take(4)->get(); $data["testimonials"] = Testimonials::where('status', 1)->latest()->get(); - $data['services'] = Services::latest()->take(6)->get(); + $data['services'] = Services::latest()->where('parent_service',null)->take(6)->get(); $data['partners'] = Partners::latest()->get(); $data["news"] = News::latest()->take(6)->get(); @@ -172,7 +171,7 @@ class WebsiteController extends Controller ->orWhere('parent_service', 0) ->select(['title', 'alias']) ->get(); - $service = Services::where('alias', $alias)->where('status','<>',-1)->with('children')->first(); + $service = Services::where('alias', $alias)->where('status','<>',-1)->with('children',fn($query)=>$query->latest())->first(); return view('client.topCargo.service-single', compact('service', 'serviceLists')); } @@ -201,8 +200,7 @@ class WebsiteController extends Controller 'message' => 'required|min:10', 'phone' => 'required|string|regex:/^98\d{8}$/', ]); - - $sent = Mail::to('sm.bibhuti@gmail.com')->send(new ContactMail($validated)); + $sent = Mail::to(SITEVARS->email)->send(new ContactMail($validated)); if ($sent) { return response()->json(['success' => 'Email sent successfully']); @@ -221,7 +219,7 @@ class WebsiteController extends Controller 'freightType' => 'required|array', 'freightType.*' => 'required|string', ]); - $sent = Mail::to('sm.bibhuti@gmail.com')->send(new QuoteMail($validated)); + $sent = Mail::to(SITEVARS->email)->send(new QuoteMail($validated)); if ($sent) { return response()->json(['success' => 'Email sent successfully']); } else { diff --git a/app/Models/News.php b/app/Models/News.php index 9329751..1952aee 100644 --- a/app/Models/News.php +++ b/app/Models/News.php @@ -1,6 +1,7 @@ User::find($value) ? User::find($value)->name : '', ); } + + public static function boot(){ + parent::boot(); + static::addGlobalScope(new StatusScope()); + } } \ No newline at end of file diff --git a/app/Models/Scopes/StatusScope.php b/app/Models/Scopes/StatusScope.php new file mode 100644 index 0000000..9e5e7f8 --- /dev/null +++ b/app/Models/Scopes/StatusScope.php @@ -0,0 +1,18 @@ +where('status',1); + } +} diff --git a/resources/views/client/topCargo/partials/master-head.blade.php b/resources/views/client/topCargo/partials/master-head.blade.php index feb65f1..508ce8f 100644 --- a/resources/views/client/topCargo/partials/master-head.blade.php +++ b/resources/views/client/topCargo/partials/master-head.blade.php @@ -76,7 +76,7 @@ @else -
  • {{ $menuItem->title }}
  • +
  • title =="Quote") class = "fh-btn btn" style="color:white;"@endif href="{{ $menuItem->link }}">{{ $menuItem->title }}
  • @endif @endforeach diff --git a/resources/views/client/topCargo/partials/welcome/slider.blade.php b/resources/views/client/topCargo/partials/welcome/slider.blade.php index 29fd0da..29b599d 100644 --- a/resources/views/client/topCargo/partials/welcome/slider.blade.php +++ b/resources/views/client/topCargo/partials/welcome/slider.blade.php @@ -34,27 +34,21 @@ - +
    + style="z-index: 8; letter-spacing: 0px; width: 200%; "> + + {{ $slider->slider_title }}
    @@ -62,7 +56,7 @@
    - About - us - - - Request - Quote + @endforeach diff --git a/resources/views/client/topCargo/partials/welcome/why-choose-us.blade.php b/resources/views/client/topCargo/partials/welcome/why-choose-us.blade.php index 17cd5f8..4f9c935 100644 --- a/resources/views/client/topCargo/partials/welcome/why-choose-us.blade.php +++ b/resources/views/client/topCargo/partials/welcome/why-choose-us.blade.php @@ -7,37 +7,41 @@

    {{ $whyChooseUs->title }}?

    @foreach ($whyChooseUs->children as $item) - @if($item->status != -1) -
    + @if ($item->status != -1) + @if ($loop->last) +
    + @else +
    + @endif + class="{{ $item->icon }}">

    {{ $item->title }}

    {!! strip_tags($item->text) !!}
    +
    + + {{-- @if ($loop->last) +
    + +

    {{ $item->title }} +

    +
    + {!! strip_tags($item->text) !!}
    +
    + @endif --}} + @endif + @endforeach - @if ($loop->last) -
    - -

    {{$item->title}} -

    -
    - {!! strip_tags($item->text) !!} -
    -
    - @endif - @endif - @endforeach - -
    - -
    - -
    + +
    + +
    + diff --git a/resources/views/client/topCargo/service-single.blade.php b/resources/views/client/topCargo/service-single.blade.php index fc81698..24461cb 100644 --- a/resources/views/client/topCargo/service-single.blade.php +++ b/resources/views/client/topCargo/service-single.blade.php @@ -69,23 +69,25 @@
    @if ($service->children->isNotEmpty()) - @foreach ($service->children->take(2) as $child) -
    -
    -
    -
    -
    -

    {{ $child->title }}

    Top Line Cargo -
    -
    -

    {!! $child->text !!}

    - + @foreach ($service->children as $child) + @if (!empty($child->icon)) +
    +
    +
    +
    +
    +

    {{ $child->title }}

    Top Line Cargo +
    +
    +

    {!! $child->text !!}

    + +
    -
    + @endif @endforeach @endif
    @@ -96,21 +98,23 @@
    - @forelse ($service->children->skip(2) as $id=>$child) -
    -
    -

    - - {{$child->title}} - -

    + @forelse ($service->children as $id=>$child) + @if (empty($child->icon)) +
    + +
    +
    + {!!$child->text!!}
    +
    -
    -
    - {!!$child->text!!}
    -
    -
    + @endif @empty @endforelse diff --git a/resources/views/client/topCargo/teams.blade.php b/resources/views/client/topCargo/teams.blade.php index 1e33362..9b59009 100644 --- a/resources/views/client/topCargo/teams.blade.php +++ b/resources/views/client/topCargo/teams.blade.php @@ -73,7 +73,7 @@

    {{ $team->title }}

    - {{ $team->destination }} + {{ $team->designation }}
    @empty diff --git a/storage/logs/laravel.log b/storage/logs/laravel.log index 3ed1111..ded15a3 100644 --- a/storage/logs/laravel.log +++ b/storage/logs/laravel.log @@ -29991,3 +29991,1589 @@ The event was not just about a flight taking off; it symbolized a journey of pro #55 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/server.php(21): require_once('/Applications/X...') #56 {main} "} +[2024-05-08 07:49:33] local.ERROR: Illuminate\Support\Collection::filter(): Argument #1 ($callback) must be of type ?callable, string given, called in /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/storage/framework/views/7bc48ddcd9b1e14aba0e76e08477a744.php on line 71 {"view":{"view":"/Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/resources/views/client/topCargo/service-single.blade.php","data":{"headerMenuItems":"
    Illuminate\\Database\\Eloquent\\Collection {#1937
    +  #items: array:8 [
    +    0 => App\\Models\\Menuitems {#1932
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\Menuitems {#1964
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    2 => App\\Models\\Menuitems {#1963
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    3 => App\\Models\\Menuitems {#1962
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    4 => App\\Models\\Menuitems {#1961
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    5 => App\\Models\\Menuitems {#1960
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    6 => App\\Models\\Menuitems {#1959
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    7 => App\\Models\\Menuitems {#1958
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","footerMenuItems":"
    Illuminate\\Database\\Eloquent\\Collection {#2011
    +  #items: array:1 [
    +    0 => App\\Models\\Menuitems {#1999
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","popularNews":"
    Illuminate\\Database\\Eloquent\\Collection {#2019
    +  #items: array:2 [
    +    0 => App\\Models\\News {#2010
    +      #connection: \"mysql\"
    +      #table: \"news\"
    +      #primaryKey: \"news_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:13 [ …13]
    +      #original: array:13 [ …13]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:12 [ …12]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\News {#2039
    +      #connection: \"mysql\"
    +      #table: \"news\"
    +      #primaryKey: \"news_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:13 [ …13]
    +      #original: array:13 [ …13]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:12 [ …12]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","errors":"
    Illuminate\\Support\\ViewErrorBag {#2025
    +  #bags: []
    +}
    +
    +","service":"
    App\\Models\\Services {#1973
    +  #connection: \"mysql\"
    +  #table: \"services\"
    +  #primaryKey: \"service_id\"
    +  #keyType: \"int\"
    +  +incrementing: true
    +  #with: []
    +  #withCount: []
    +  +preventsLazyLoading: false
    +  #perPage: 15
    +  +exists: true
    +  +wasRecentlyCreated: false
    +  #escapeWhenCastingToString: false
    +  #attributes: array:14 [
    +    \"service_id\" => 1
    +    \"parent_service\" => null
    +    \"title\" => \"Road Freight Forwarding\"
    +    \"alias\" => \"road-freight-forwarding\"
    +    \"sub_text\" => \"Efficient services for domestic and international shipments.\"
    +    \"text\" => \"<p>Road freight forwarding involves the transportation of goods via trucks or other road vehicles. It&#39;s a crucial aspect of logistics, especially for domestic or regional shipments where air or sea transport may not be practical or cost-effective. At Top Line Cargo, our road freight forwarding services are designed to offer efficient, reliable, and cost-effective solutions for transporting goods across various destinations.</p>\"
    +    \"icon\" => \"flaticon-transport-5\"
    +    \"thumb\" => \"storage/topCargo/files/1/services/slide1-3.jpg\"
    +    \"display_order\" => 1
    +    \"status\" => 1
    +    \"created_at\" => \"2024-05-03 20:07:51\"
    +    \"createdby\" => 1
    +    \"updated_at\" => \"2024-05-03 20:07:51\"
    +    \"updatedby\" => 1
    +  ]
    +  #original: array:14 [
    +    \"service_id\" => 1
    +    \"parent_service\" => null
    +    \"title\" => \"Road Freight Forwarding\"
    +    \"alias\" => \"road-freight-forwarding\"
    +    \"sub_text\" => \"Efficient services for domestic and international shipments.\"
    +    \"text\" => \"<p>Road freight forwarding involves the transportation of goods via trucks or other road vehicles. It&#39;s a crucial aspect of logistics, especially for domestic or regional shipments where air or sea transport may not be practical or cost-effective. At Top Line Cargo, our road freight forwarding services are designed to offer efficient, reliable, and cost-effective solutions for transporting goods across various destinations.</p>\"
    +    \"icon\" => \"flaticon-transport-5\"
    +    \"thumb\" => \"storage/topCargo/files/1/services/slide1-3.jpg\"
    +    \"display_order\" => 1
    +    \"status\" => 1
    +    \"created_at\" => \"2024-05-03 20:07:51\"
    +    \"createdby\" => 1
    +    \"updated_at\" => \"2024-05-03 20:07:51\"
    +    \"updatedby\" => 1
    +  ]
    +  #changes: []
    +  #casts: []
    +  #classCastCache: []
    +  #attributeCastCache: []
    +  #dateFormat: null
    +  #appends: array:1 [
    +    0 => \"status_name\"
    +  ]
    +  #dispatchesEvents: []
    +  #observables: []
    +  #relations: array:1 [
    +    \"children\" => Illuminate\\Database\\Eloquent\\Collection {#2085
    +      #items: array:4 [ …4]
    +      #escapeWhenCastingToString: false
    +    }
    +  ]
    +  #touches: []
    +  +timestamps: true
    +  +usesUniqueIds: false
    +  #hidden: []
    +  #visible: []
    +  #fillable: array:13 [
    +    0 => \"title\"
    +    1 => \"parent_service\"
    +    2 => \"alias\"
    +    3 => \"sub_text\"
    +    4 => \"text\"
    +    5 => \"thumb\"
    +    6 => \"icon\"
    +    7 => \"display_order\"
    +    8 => \"status\"
    +    9 => \"created_at\"
    +    10 => \"createdby\"
    +    11 => \"updated_at\"
    +    12 => \"updatedby\"
    +  ]
    +  #guarded: array:1 [
    +    0 => \"*\"
    +  ]
    +}
    +
    +","serviceLists":"
    Illuminate\\Database\\Eloquent\\Collection {#2044
    +  #items: array:6 [
    +    0 => App\\Models\\Services {#2043
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\Services {#2078
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    2 => App\\Models\\Services {#2077
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    3 => App\\Models\\Services {#2076
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    4 => App\\Models\\Services {#2075
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    5 => App\\Models\\Services {#2074
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +"}},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Illuminate\\Support\\Collection::filter(): Argument #1 ($callback) must be of type ?callable, string given, called in /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/storage/framework/views/7bc48ddcd9b1e14aba0e76e08477a744.php on line 71 at /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:384) +[stacktrace] +#0 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/resources/views/client/topCargo/service-single.blade.php(72): Illuminate\\Support\\Collection->filter('icon', '!=', NULL) +#1 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): require('/Applications/X...') +#2 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(125): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire('/Applications/X...', Array) +#4 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(72): Illuminate\\View\\Engines\\PhpEngine->evaluatePath('/Applications/X...', Array) +#5 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(207): Illuminate\\View\\Engines\\CompilerEngine->get('/Applications/X...', Array) +#6 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(190): Illuminate\\View\\View->getContents() +#7 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(159): Illuminate\\View\\View->renderContents() +#8 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#9 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent(Object(Illuminate\\View\\View)) +#10 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct(Object(Illuminate\\View\\View), 200, Array) +#11 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#12 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#13 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request)) +#14 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#15 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#16 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#17 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#18 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#19 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#20 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#21 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure)) +#22 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#23 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#24 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#25 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#26 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#27 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#28 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#29 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request)) +#30 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route)) +#31 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request)) +#32 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request)) +#33 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request)) +#34 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php(66): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#35 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Barryvdh\\Debugbar\\Middleware\\InjectDebugbar->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#36 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#37 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#38 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#39 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#40 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#41 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#42 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#43 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#44 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(99): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#45 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#46 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#47 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#48 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#49 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#50 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#51 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#52 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request)) +#53 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/public/index.php(51): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request)) +#54 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/server.php(21): require_once('/Applications/X...') +#55 {main} + +[previous exception] [object] (TypeError(code: 0): Illuminate\\Support\\Collection::filter(): Argument #1 ($callback) must be of type ?callable, string given, called in /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/storage/framework/views/7bc48ddcd9b1e14aba0e76e08477a744.php on line 71 at /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:384) +[stacktrace] +#0 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/storage/framework/views/7bc48ddcd9b1e14aba0e76e08477a744.php(71): Illuminate\\Support\\Collection->filter('icon', '!=', NULL) +#1 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): require('/Applications/X...') +#2 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(125): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#3 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire('/Applications/X...', Array) +#4 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(72): Illuminate\\View\\Engines\\PhpEngine->evaluatePath('/Applications/X...', Array) +#5 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(207): Illuminate\\View\\Engines\\CompilerEngine->get('/Applications/X...', Array) +#6 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(190): Illuminate\\View\\View->getContents() +#7 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(159): Illuminate\\View\\View->renderContents() +#8 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#9 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent(Object(Illuminate\\View\\View)) +#10 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct(Object(Illuminate\\View\\View), 200, Array) +#11 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#12 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#13 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request)) +#14 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#15 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#16 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#17 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#18 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#19 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#20 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#21 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure)) +#22 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#23 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#24 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#25 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#26 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#27 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#28 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#29 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request)) +#30 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route)) +#31 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request)) +#32 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request)) +#33 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request)) +#34 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php(66): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#35 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Barryvdh\\Debugbar\\Middleware\\InjectDebugbar->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#36 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#37 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#38 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#39 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#40 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#41 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#42 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#43 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#44 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(99): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#45 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#46 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#47 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#48 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#49 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#50 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#51 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#52 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request)) +#53 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/public/index.php(51): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request)) +#54 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/server.php(21): require_once('/Applications/X...') +#55 {main} +"} +[2024-05-08 07:54:09] local.ERROR: Call to a member function isNotEmpty() on string {"view":{"view":"/Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/resources/views/client/topCargo/service-single.blade.php","data":{"headerMenuItems":"
    Illuminate\\Database\\Eloquent\\Collection {#1937
    +  #items: array:8 [
    +    0 => App\\Models\\Menuitems {#1932
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\Menuitems {#1964
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    2 => App\\Models\\Menuitems {#1963
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    3 => App\\Models\\Menuitems {#1962
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    4 => App\\Models\\Menuitems {#1961
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    5 => App\\Models\\Menuitems {#1960
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    6 => App\\Models\\Menuitems {#1959
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    7 => App\\Models\\Menuitems {#1958
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","footerMenuItems":"
    Illuminate\\Database\\Eloquent\\Collection {#2011
    +  #items: array:1 [
    +    0 => App\\Models\\Menuitems {#1999
    +      #connection: \"mysql\"
    +      #table: \"menuitems\"
    +      #primaryKey: \"menu_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:14 [ …14]
    +      #original: array:14 [ …14]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: array:1 [ …1]
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","popularNews":"
    Illuminate\\Database\\Eloquent\\Collection {#2019
    +  #items: array:2 [
    +    0 => App\\Models\\News {#2010
    +      #connection: \"mysql\"
    +      #table: \"news\"
    +      #primaryKey: \"news_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:13 [ …13]
    +      #original: array:13 [ …13]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:12 [ …12]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\News {#2039
    +      #connection: \"mysql\"
    +      #table: \"news\"
    +      #primaryKey: \"news_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:13 [ …13]
    +      #original: array:13 [ …13]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:12 [ …12]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +","errors":"
    Illuminate\\Support\\ViewErrorBag {#2025
    +  #bags: []
    +}
    +
    +","service":"
    App\\Models\\Services {#1973
    +  #connection: \"mysql\"
    +  #table: \"services\"
    +  #primaryKey: \"service_id\"
    +  #keyType: \"int\"
    +  +incrementing: true
    +  #with: []
    +  #withCount: []
    +  +preventsLazyLoading: false
    +  #perPage: 15
    +  +exists: true
    +  +wasRecentlyCreated: false
    +  #escapeWhenCastingToString: false
    +  #attributes: array:14 [
    +    \"service_id\" => 1
    +    \"parent_service\" => null
    +    \"title\" => \"Road Freight Forwarding\"
    +    \"alias\" => \"road-freight-forwarding\"
    +    \"sub_text\" => \"Efficient services for domestic and international shipments.\"
    +    \"text\" => \"<p>Road freight forwarding involves the transportation of goods via trucks or other road vehicles. It&#39;s a crucial aspect of logistics, especially for domestic or regional shipments where air or sea transport may not be practical or cost-effective. At Top Line Cargo, our road freight forwarding services are designed to offer efficient, reliable, and cost-effective solutions for transporting goods across various destinations.</p>\"
    +    \"icon\" => \"flaticon-transport-5\"
    +    \"thumb\" => \"storage/topCargo/files/1/services/slide1-3.jpg\"
    +    \"display_order\" => 1
    +    \"status\" => 1
    +    \"created_at\" => \"2024-05-03 20:07:51\"
    +    \"createdby\" => 1
    +    \"updated_at\" => \"2024-05-03 20:07:51\"
    +    \"updatedby\" => 1
    +  ]
    +  #original: array:14 [
    +    \"service_id\" => 1
    +    \"parent_service\" => null
    +    \"title\" => \"Road Freight Forwarding\"
    +    \"alias\" => \"road-freight-forwarding\"
    +    \"sub_text\" => \"Efficient services for domestic and international shipments.\"
    +    \"text\" => \"<p>Road freight forwarding involves the transportation of goods via trucks or other road vehicles. It&#39;s a crucial aspect of logistics, especially for domestic or regional shipments where air or sea transport may not be practical or cost-effective. At Top Line Cargo, our road freight forwarding services are designed to offer efficient, reliable, and cost-effective solutions for transporting goods across various destinations.</p>\"
    +    \"icon\" => \"flaticon-transport-5\"
    +    \"thumb\" => \"storage/topCargo/files/1/services/slide1-3.jpg\"
    +    \"display_order\" => 1
    +    \"status\" => 1
    +    \"created_at\" => \"2024-05-03 20:07:51\"
    +    \"createdby\" => 1
    +    \"updated_at\" => \"2024-05-03 20:07:51\"
    +    \"updatedby\" => 1
    +  ]
    +  #changes: []
    +  #casts: []
    +  #classCastCache: []
    +  #attributeCastCache: []
    +  #dateFormat: null
    +  #appends: array:1 [
    +    0 => \"status_name\"
    +  ]
    +  #dispatchesEvents: []
    +  #observables: []
    +  #relations: array:1 [
    +    \"children\" => Illuminate\\Database\\Eloquent\\Collection {#2085
    +      #items: array:4 [ …4]
    +      #escapeWhenCastingToString: false
    +    }
    +  ]
    +  #touches: []
    +  +timestamps: true
    +  +usesUniqueIds: false
    +  #hidden: []
    +  #visible: []
    +  #fillable: array:13 [
    +    0 => \"title\"
    +    1 => \"parent_service\"
    +    2 => \"alias\"
    +    3 => \"sub_text\"
    +    4 => \"text\"
    +    5 => \"thumb\"
    +    6 => \"icon\"
    +    7 => \"display_order\"
    +    8 => \"status\"
    +    9 => \"created_at\"
    +    10 => \"createdby\"
    +    11 => \"updated_at\"
    +    12 => \"updatedby\"
    +  ]
    +  #guarded: array:1 [
    +    0 => \"*\"
    +  ]
    +}
    +
    +","serviceLists":"
    Illuminate\\Database\\Eloquent\\Collection {#2044
    +  #items: array:6 [
    +    0 => App\\Models\\Services {#2043
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    1 => App\\Models\\Services {#2078
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    2 => App\\Models\\Services {#2077
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    3 => App\\Models\\Services {#2076
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    4 => App\\Models\\Services {#2075
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +    5 => App\\Models\\Services {#2074
    +      #connection: \"mysql\"
    +      #table: \"services\"
    +      #primaryKey: \"service_id\"
    +      #keyType: \"int\"
    +      +incrementing: true
    +      #with: []
    +      #withCount: []
    +      +preventsLazyLoading: false
    +      #perPage: 15
    +      +exists: true
    +      +wasRecentlyCreated: false
    +      #escapeWhenCastingToString: false
    +      #attributes: array:2 [ …2]
    +      #original: array:2 [ …2]
    +      #changes: []
    +      #casts: []
    +      #classCastCache: []
    +      #attributeCastCache: []
    +      #dateFormat: null
    +      #appends: array:1 [ …1]
    +      #dispatchesEvents: []
    +      #observables: []
    +      #relations: []
    +      #touches: []
    +      +timestamps: true
    +      +usesUniqueIds: false
    +      #hidden: []
    +      #visible: []
    +      #fillable: array:13 [ …13]
    +      #guarded: array:1 [ …1]
    +    }
    +  ]
    +  #escapeWhenCastingToString: false
    +}
    +
    +"}},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Call to a member function isNotEmpty() on string at /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/resources/views/client/topCargo/service-single.blade.php:73) +[stacktrace] +#0 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): require() +#1 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(125): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#2 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire('/Applications/X...', Array) +#3 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(72): Illuminate\\View\\Engines\\PhpEngine->evaluatePath('/Applications/X...', Array) +#4 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(207): Illuminate\\View\\Engines\\CompilerEngine->get('/Applications/X...', Array) +#5 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(190): Illuminate\\View\\View->getContents() +#6 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(159): Illuminate\\View\\View->renderContents() +#7 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent(Object(Illuminate\\View\\View)) +#9 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct(Object(Illuminate\\View\\View), 200, Array) +#10 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#11 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#12 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request)) +#13 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#14 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#15 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#16 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#17 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#18 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#19 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#20 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure)) +#21 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#22 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#23 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#24 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#25 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#26 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#27 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#28 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request)) +#29 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route)) +#30 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request)) +#31 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request)) +#32 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request)) +#33 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php(66): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#34 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Barryvdh\\Debugbar\\Middleware\\InjectDebugbar->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#35 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#36 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#37 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#38 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#39 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#40 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#41 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#42 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#43 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(99): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#44 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#45 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#46 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#47 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#48 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#49 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#50 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#51 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request)) +#52 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/public/index.php(51): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request)) +#53 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/server.php(21): require_once('/Applications/X...') +#54 {main} + +[previous exception] [object] (Error(code: 0): Call to a member function isNotEmpty() on string at /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/storage/framework/views/7bc48ddcd9b1e14aba0e76e08477a744.php:72) +[stacktrace] +#0 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): require() +#1 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(125): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}() +#2 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire('/Applications/X...', Array) +#3 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(72): Illuminate\\View\\Engines\\PhpEngine->evaluatePath('/Applications/X...', Array) +#4 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(207): Illuminate\\View\\Engines\\CompilerEngine->get('/Applications/X...', Array) +#5 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(190): Illuminate\\View\\View->getContents() +#6 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/View.php(159): Illuminate\\View\\View->renderContents() +#7 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View->render() +#8 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent(Object(Illuminate\\View\\View)) +#9 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct(Object(Illuminate\\View\\View), 200, Array) +#10 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#11 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse(Object(Illuminate\\Http\\Request), Object(Illuminate\\View\\View)) +#12 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}(Object(Illuminate\\Http\\Request)) +#13 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#14 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#15 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(78): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#16 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#17 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#18 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#19 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#20 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest(Object(Illuminate\\Http\\Request), Object(Illuminate\\Session\\Store), Object(Closure)) +#21 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#22 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#23 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#24 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#25 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#26 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#27 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#28 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack(Object(Illuminate\\Routing\\Route), Object(Illuminate\\Http\\Request)) +#29 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute(Object(Illuminate\\Http\\Request), Object(Illuminate\\Routing\\Route)) +#30 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute(Object(Illuminate\\Http\\Request)) +#31 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch(Object(Illuminate\\Http\\Request)) +#32 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}(Object(Illuminate\\Http\\Request)) +#33 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php(66): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#34 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Barryvdh\\Debugbar\\Middleware\\InjectDebugbar->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#35 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#36 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#37 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#38 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#39 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#40 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#41 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#42 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#43 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(99): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#44 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#45 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#46 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#47 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#48 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle(Object(Illuminate\\Http\\Request), Object(Closure)) +#49 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request)) +#50 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then(Object(Closure)) +#51 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter(Object(Illuminate\\Http\\Request)) +#52 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/public/index.php(51): Illuminate\\Foundation\\Http\\Kernel->handle(Object(Illuminate\\Http\\Request)) +#53 /Applications/XAMPP/xamppfiles/htdocs/Cargo_CMS/server.php(21): require_once('/Applications/X...') +#54 {main} +"}