@extends('layouts.master') @section('title') شاشة قائمة المدفوعات @endsection @section('css') @endsection @section('page-header') @endsection @section('content')
@if (in_array(51, Session('accessRoles')))   اضافة عملية دفع @endif
@foreach ($payments as $payment) @endforeach
# رقم الحجز اسم العميل رقم الهاتف المبلغ المدفوع طريقة الدفع تاريخ الدفع العمليات
{{ $payment->id }} {{ @$payment->Reservation->id }} {{ @$payment->Customer->name }} {{ @$payment->Customer->phone_number }} {{ $payment->amount }} @if ($payment->type == 0) cash @else visa @endif {{ $payment->date }}
@endsection @section('js') @endsection