@extends('layouts.app') @push('style') @endpush @section('main') {{-- {{ $brands }} --}}

Product Stock

{{-- =============================================== --}} @if (session('success'))
{{ session('success') }}
@endif {{-- =============================================== --}}
{{-- {{ $products }} --}}

Products

NEW PHONES Stock: {{ $products->where('condition', 'new')->count() }}
OLD PHONES Stock: {{ $products->where('condition', 'old')->count() }}
TOTAL STOCK {{ count($products) }}
TOTAL STOCK PRICE {{ env('APP_CURRENCY') }} {{ $totalCost }}

Product Stock

@foreach ($products as $product) @endforeach
# Customer Info Brand Model IMEI/SN Condition Stock Color GB Buy Price Last Updated Action
{{ $product->id }} Name:- {{ $product->customer->name }}, Number:- {{ $product->customer->number }}, cpr:- {{ $product->customer->cpr }}, address:- {{ $product->customer->address }} {{ $product->brand }} {{ $product->model }} {{ $product->imei_or_sn }} {{ $product->condition }} {{ $product->stock }} {{ $product->color }} {{ $product->gb }} {{ $product->buy_price }} {{ $product->id }}
# Customer Info Brand Model IMEI/SN Condition Stock Color GB Buy Price Last Updated Action
@endsection @push('script') @endpush