@extends('admin.layouts.app') @section('title', 'Student Reviews') @section('content')

Student Review Videos

{{ $reviews->total() }} total

+ Add Review
@if($reviews->isEmpty())
No student reviews found.
@else @foreach($reviews as $review) @endforeach
Student Actions

{{ $review->student_name }}

{{ $review->video_url ? 'Has video URL' : 'No video URL' }}

Edit
@csrf @method('DELETE')
{{ $reviews->links() }}
@endif
@endsection