Skip to content

Commit ced0892

Browse files
remove space , replace model on config delete unused variable
1 parent f894fb2 commit ced0892

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

config/shopper/models.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
use Shopper\Core\Models;
5+
use App\Models;
66

77
return [
88

config/shopper/orders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
'generator' => [
1515
'start_sequence_from' => 1,
16-
'prefix' => '#SH',
16+
'prefix' => 'SH',
1717
'pad_length' => 1,
1818
'pad_string' => '0',
1919
],

resources/views/livewire/pages/single-product.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="bg-white">
22
<div class="py-3 bg-white border-b border-gray-200 bg-opacity-80">
33
<x-container class="flex items-center justify-between px-4">
4-
{{ Breadcrumbs::render('product', $product ) }}
4+
{{ Breadcrumbs::render('product', $product) }}
55
</x-container>
66
</div>
77

routes/breadcrumbs/breadcrumbs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
$trail->push($collection->name, route('collection.products', $collection));
2525
});
2626

27-
Breadcrumbs::for('product', function (Generator $trail, $product, $variant = null) {
27+
Breadcrumbs::for('product', function (Generator $trail, $product) {
2828
$trail->parent('store');
2929
$trail->push($product->name, route('single-product', $product));
3030
});

0 commit comments

Comments
 (0)