@extends('layouts.app') @section('title', 'Ürün & Finansal') @section('content')
Ürün ve finansal yönetim paneli
Toplam Ürün
{{ number_format($totalProducts) }}
Master Ürünler
{{ number_format($masterProducts) }}
Senkronize Ürünler
{{ number_format($syncedProducts) }}
{{ $totalProducts > 0 ? number_format(($syncedProducts / $totalProducts) * 100, 1) : 0 }}%
Maliyet Bilgisi
{{ number_format($productsWithCost) }}
{{ $totalProducts > 0 ? number_format(($productsWithCost / $totalProducts) * 100, 1) : 0 }}%
{{ $currency->currency }}
{{ $currency->total }} Site
| Site | Ürün Sayısı | Para Birimi |
|---|---|---|
| {{ $item->site->name ?? 'Bilinmeyen Site' }} | {{ number_format($item->total) }} | {{ $item->site->currency ?? '-' }} |
| Ürün Adı | Site | Normal Fiyat | İndirimli Fiyat | Durum |
|---|---|---|---|---|
| {{ $product->name }} | {{ $product->site->name ?? '-' }} | {{ $product->regular_price ? number_format($product->regular_price, 2) . ' €' : '-' }} | {{ $product->sale_price ? number_format($product->sale_price, 2) . ' €' : '-' }} | @if($product->isSyncedToWordPress()) Senkronize @else Beklemede @endif |