@extends('layouts.master') @section('page-title') Account "{{ $account->name }}" @endsection @section('breadcrumb')
  1. In: {{ number_format($account->totalMovementsIn, 2) }} PHP
  2. Out: {{ number_format($account->totalMovementsOut, 2) }} PHP
@endsection @section('content')
@foreach($movements as $movement) @endforeach
Target Direction Good Unit price Total Date
{{ $movement->referencedAccount->name }} @if($movement->direction === "in") @else @endif {{ $movement->good->name }} {{ $movement->quantity }} {{ $movement->good->unit->name }} {{ $movement->unit_price }} {{ $movement->unitPriceCurrency->symbol }} {{ number_format($movement->unit_price * $movement->quantity, 2) }} {{ $movement->unitPriceCurrency->symbol }} {{ $movement->moved_at }}
@endsection