@extends('master.app') @section('title', 'customer') @section('body')
Avatar
{{ $customer->name }}
{{ $customer->email }}
{{ $customer->phone }}
{{ $customer->address }}

Quick Action

"{{ $customer->name }}" Balance Sheet

TS From Bill
د دی مشتری ټول خریداری
{{ $sale_total_in_bill }}
TR From Bill
دټولو بیلونو اصولی
{{ $sale_received_in_bill }}
TR From Recepts
د رسیدونو اصول
{{ $total_received_from_received_list }}
Total From Advance
پیشکی پسی
{{ $total_advance_from_liger }}
TR From Return
د واپس شوی مال پسی
{{ $total_return_from_liger }}
Balance Sheet
@php $credits=$sale_total_in_bill; $debits=$sale_received_in_bill+$total_received_from_received_list+$total_return_from_liger+$total_advance_from_liger; @endphp {{ $credits-$debits }}
@endsection @section('pageJs') @endsection