@extends('admin.layouts.simple.master') @section('title', 'Students') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Students Fees

@endsection @section('breadcrumb-items') @endsection @section('content')
Reviews
{{-- Add Fees --}}
@if(Session::has('message')) @endif
@foreach($reviews as $key => $review) @endforeach
# Course User Email Name Comment Rating Status Date Action
{{ $key}} {{ ($review->course->name) ?? '--' }} {{ ($review->user->email) ?? '--' }} {{ ($review->name) ?? '--' }} {{ ($review->comment) ?? '--' }} {{ ($review->rating) ?? '--' }} {{ ($review->status == 0) ? 'Un Approved' : 'Approved' }} {{ $review->created_at->format('Y-m-d H:i:s')}}
@endsection @section('script') @endsection