@extends("admin.admin_layout.adminlayout") @section("admin_content")

All Transactions

@php $i=1 @endphp @foreach($transactions as $value) @endforeach
Sl. Store Name Subscription Name / Price Subscription Days Payment Status Payment Gateway
{{ $i++}} @foreach($value->store($value->store_id) as $data) {{$data->store_name }} @endforeach {{ $value->subscription_name}} / {{ $value->subscription_price}} {{ $value->subscription_days}} {{$value->payment_status == 'unpaid' ? "UnPaid":"Paid"}} {{ $value->gateway_name}}
@endsection