@extends('layouts.app') @section('styles') @endsection @section('content')
طلبات التصفيات
@foreach ($payments as $payment) @endforeach
طالب التصفية نوع طالب التصفية التاريخ المبلغ الحالة إجرات
@if ($payment->paymentFor() == 'provider') {{ $payment->paymentable?->first_name . ' ' . $payment->paymentable?->last_name }} @endif @if ($payment->paymentFor() == 'marketer') {{ $payment->paymentable?->name }} @endif {{ $payment->paymentFor() }} {{ $payment->created_at }} {{ $payment->amount }} {{ $payment->statusText() }} @if (auth()->user()->isAbleTo(['update_payments'])) @endif
@endsection('content') @section('scripts') @endsection