@if(isset($stock_takings[0]))
@if($print)
Stock Taking
{{$company->company_name}}
Address: {{$company->company_address}}, {{$company->city}}, Tanzania
Mob: {{$company->compny_phone}}
Email: {{$company->company_email}}
{{strtoupper($stock_take->store->name)}}, STOCK TAKE
ON {{\Carbon\Carbon::parse($stock_take->date)->toFormattedDateString()}}
S/M |
Item |
Quantity |
Variance |
Rate |
Currency |
@foreach($stock_take->stockTakeItems as $index => $item)
{{++$index}} |
{{$item->item->name}} |
{{$item->quantity ? $item->quantity : 0}} |
{{$item->variance}} |
{{$item->rate ? number_format($item->rate) : 0.00}} |
{{strtoupper($item->currency)}} |
@endforeach
|
|
STORE KEEPER |
|
............................. |
@else
@endif
@else
Information Not Available..!!
@endif