@extends('admin/layouts.master') @section('title', 'Fees Structure') @section('body')
@include('admin.message')

All Fees Records

@foreach($carts as $key=>$p) @endforeach
# Name Mobile Course Course Price Pay Amount Selected Installment Paydate Duedate Status Reminder
{{$key+1}} @php $user= App\User::where('id', $p->user_id)->get(); @endphp {{$user[0]->fname}} {{$user[0]->lname}} {{$user[0]->mobile}} @php $course= App\Course::where('id', $p->course_id)->get(); @endphp {{$course[0]->title}} {{$course[0]->discount_price}} {{$p->offer_price}} {{$p->plan}} {{$p->paydate}} {{$p->duedate}} {{$p->status}}
@endsection