@extends('Layouts.report') @section('content') @foreach($data['report'] as $row) @endforeach
{!! $data['branch_data']->print_label_ar !!}
Image
{!! $data['branch_data']->print_label_en !!}
@yield('title')
{{ $data['params_text'] ?? '' }}
{{ trans('main.branch') }} {{ trans('main.date') }} {{ trans('main.invoice_code') }} {{ trans('main.customer') }} {{ trans('main.mobile') }} {{ trans('main.caliber') }} {{ trans('main.weight') }} {{ trans('main.grand_total') }}
{{ $row->branch_name }} {{ $row->action_date }} {{ $row->action_code }} {{ $row->customer_name }} {{ $row->customer_mobile }} {{ $row->category_title }} {{ $row->raw_weight }} {{ $row->total_price }}
{{ trans('main.total') }} {{ number_format( collect($data['report'])->sum('raw_weight') , 2 , '.' , ',' ) }} {{ number_format( collect($data['report'])->sum('total_price') , 2 , '.' , ',' ) }}
@endsection