Compare commits

..

2 Commits

Author SHA1 Message Date
6f5eb0d776 wip 2025-12-08 19:48:53 +05:00
1cdabc9b8f wip 2025-12-05 20:47:08 +05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ class CartController extends Controller
public function index(): JsonResponse
{
$cartItems = auth()->user()->carts()
->with(['product' => ['media', 'brand']])
->with(['product' => ['media', 'brand', 'channels']])
->orderBy('cart_items.id', 'desc')
->get()
->each(function ($cartItem) {

View File

@@ -1,4 +1,4 @@
<div class="mt-8 leading-normal text-xs text-gray-500 space-y-1">
<p class="text-center">Powered by <a class="link-default" href="http://webulgam.com.tm">Web Ulgam,</a></p>
<p class="text-center">Powered by <a class="link-default" href="https://webulgam.com">Web Ulgam,</a></p>
<p class="text-center">© {{ date('Y') }} MM.COM.TM Entrepreneur.</p>
</div>