I would like to ask if you can help me with the errors I am encountering with my newly installed Laravel 5.4. Here is my blade template
home.blade.php
@extends('layouts.app') @section('content') <div class="container">
<div class="row">
{{ App\StudentHistory::select(['date', 'student_id', 'grade'])
->where('subject', 'English')
->groupBy('student_id')
->orderBy('date','desc')
->first()
->get()}}
</div>@endsection
Let me know what else you guys need, I'll update as you ask
->get()on->first()