@extends('layouts.master') @section('css') @section('title') {{ __('home.cost_center') }} @stop @endsection @section('page-header') @endsection @section('content') @if (count($errors) > 0)
@endif
{{ csrf_field() }}

{{ __('home.cost_center') }}

{{ __('home.branch') }}

نوع التقرير


@if (isset($Invoices))
@foreach ($Invoices as $product) @endforeach
{{ __('home.Invoice_no') }} {{ __('home.sallerName') }} {{ __('home.date') }} {{ __('home.branch') }} {{ __('home.total') }}
{{ $product->id }} {{ $product->user->name }} {{ $product->created_at }} {{ $product->branch->name }} {{ round($product->cashamount + $product->bankamount + $product->Bank_transfer + $product->creaditamount, 2) }}
@endif
@endsection @section('js') @endsection