@extends('layouts.main-layout') @section('title') {{ config('app.name') }} - Report Items @endsection @section('content')

Predmeti Izveštaja - {{ $report_items[0]->report->report_name }}

@if(!empty($report_items) && count($report_items) > 0) @foreach($report_items as $report_item) @endforeach
# Naziv proizvoda Identifikacioni broj proizvoda Naziv proizvođača Naziv apoteke PIB apoteke Količina proizvoda Cena proizvoda Ukupna cena Faktura izveštaja Datum izveštaja
{{ $report_item->report_item_id }} {{ $report_item->report_wholesale_product_name }} {{ $report_item->report_item_wholesale_product_id }} {{ $report_item->report_manufacturer_name }} {{ $report_item->report_pharmacy_name }} {{ $report_item->report_pharmacy_pib_code }} {{ $report_item->report_product_quantity }} {{ number_format($report_item->report_product_price, 2) }} {{ number_format($report_item->report_product_sum, 2) }} {{ $report_item->report_invoice }} {{ $report_item->report_item_date }}
@endif
@endsection