@extends('layouts.master') @section('title', 'Balance Sheet') @section('content')

Balance Sheet

New Record
@if(!empty($balances)) @foreach($balances as $balance) @endforeach @endif
Date PayPal Stripe Refunds Withdrawal Balance Actions
{{$balance->date}} {{"$".$balance->paypal}} {{"$".$balance->stripe}} {{"$".$balance->refunds}} {{"$".$balance->withdrawal}} {{"$".$balance->balance}} @if($counter == 0) @else @endif
Total {{"$".$totalPayPal}} {{"$".$totalStripe}} {{"$".$totalRefunds}} {{"$".$totalWithdrawal}} @if($balances->count()>0) {{"$".$balances[0]->balance}} @else {{"$0"}} @endif {{"Actions"}}
@endsection @section('javascript') @stop