@extends('layouts.franchise', ['heading' => 'Stock / स्टॉक']) @section('content') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
@endif
@csrf
Transfer / Return Stock
Leave target blank to return stock to admin.
@csrf
Damage Entry
Stock Requests
Create new requests from stock request page.
Manage Requests
@csrf
Transfer BV to User
@forelse($stocks as $stock)
{{ $stock->name }}
SKU: {{ $stock->sku }}
Qty: {{ number_format((float) $stock->quantity, 2) }}
Reserved: {{ number_format((float) $stock->reserved_quantity, 2) }}
DP: ₹ {{ number_format((float) $stock->dp_price, 2) }} | BV: {{ number_format((float) $stock->bv, 2) }}
@empty
No stock found.
@endforelse
Stock Ledger
@forelse($transactions as $txn)
{{ $txn->transaction_type }}
{{ \Illuminate\Support\Carbon::parse($txn->transacted_at)->format('d M Y, h:i A') }}
Qty: {{ number_format((float) ($txn->quantity ?? 0), 2) }}
Ref: {{ $txn->reference }}
@empty
No stock transactions found.
@endforelse
{{ $transactions->links() }}
@endsection