@extends('layouts.app') @section('title') {{ __('messages_301.Price in') }} @endsection @section('style') @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), __('messages_301.Subscriptions') => route('doctor.subscribe.paid'), __('messages_301.Price in') => 'active', ], ])

{{ __('messages_301.Price in') }}

{{ count($data) }}

{{ __('messages_301.Transactions') }}


{{ $data->sum('price') }}

{{ __('messages_301.Price in') }}

@include('inc.is_empty_data', [ 'var_check_empty' => $data, 'var_check_empty_rows' => 5, ]) @foreach ($data as $item) @endforeach
# {{ __('messages_301.Price') }} {{ __('messages_301.From user') }} {{ __('messages_301.To user') }} {{ __('messages_301.Payment type') }}
{{ $loop->iteration }} {{ $item->price }} {{ $item->from_user?->name }} {{ $item->to_user?->name }} {{ $item->payment_type?->name }}
@endsection