@extends('backend.layouts.master') @section('title') Ödeme İşlemleri | {{ $accountings->title }} @endsection @section('breadcrumb')
Cari Başlık : {{ $accountings->title }} Öğrenci Adı : {{ $accountings->student_detail->first_name }} {{ $accountings->student_detail->last_name }} Yetkili Adı : {{ $accountings->userdetay->first_name }} {{ $accountings->userdetay->last_name }}
@endsection @section('content')
{{ $tl_formati = number_format($accountings->totel_price, 2, ',', '.').' TL' }} Toplam Tutar
@php $tot_price=0; @endphp @foreach($monthly_get as $monthly) @if($monthly->isActive=="true") @php $tot_price = $monthly->month_price+$tot_price; @endphp @endif @endforeach {{ $tl_formati = number_format($tot_price, 2, ',', '.').' TL' }} Ödeme Bekleyen Tutar
@php $tot_price=0; @endphp @foreach($monthly_get as $monthly) @if($monthly->isActive=="false") @php $tot_price = $monthly->month_price+$tot_price; @endphp @endif @endforeach {{ $tl_formati = number_format($tot_price, 2, ',', '.').' TL' }} Ödenen Tutar
@foreach ($monthly_accounting as $monthly) payment_date < today() && $monthly->isActive !="false") style="background-color: #e34646d9" @endif @if($monthly->payment_date == today() && $monthly->isActive !="false") style="background-color: #a99c00d9" @endif > @endforeach
Ödeme Tarihi Taksit Ücreti Durum İşlemler
{{$monthly->payment_date->format('d-m-Y') }}
{{ $tl_formati = number_format($monthly->month_price, 2, ',', '.').' TL' }} @if($monthly->isActive=="false") @else @endif {{$monthly->payment_type }} @if($monthly->isActive=="true") Ödeme Yap @endif
{{ $monthly_accounting->links() }}
@endsection @section('css') @endsection @section('js') @endsection