{{ __('Products') }} @if (session('status')) {{ session('status') }} @endif
@foreach ($shops as $shop) @endforeach
@if ($selectedShop)
{{ __('Create Product') }}
@csrf
{{ __('Save Product') }}
{{ __('Product List') }}
@forelse ($products as $product) @empty @endforelse
{{ __('Name') }} {{ __('Stock') }} {{ __('Sell Price') }} {{ __('Low Stock') }} {{ __('Action') }}
{{ $product->name }} {{ $product->stock_quantity }} {{ $product->selling_price }} @if ($product->isLowStock()) {{ __('Low') }} @else {{ __('OK') }} @endif {{ __('Manage') }}
{{ __('No products added yet.') }}
@else {{ __('Create a shop first to manage products.') }} @endif