@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Students').' / '. trans('Board Exam').'']) @include('components.sectionbar.student_board_exam',['board_exams'=>$board_exams])
@if (count($board_exams)>0)
@foreach ($board_exams as $key=>$item) @endforeach
# @lang('Student Id') @lang('Student Name') @lang('Group') @lang('Exam Name') @lang('Roll') @lang('Registration') @lang('Session') @lang('Passing Year') @lang('Gpa') @lang('Out of GPA') @lang('Board') @lang('Action')
{{ $key + 1 }} {{$item->student->student_code}} {{$item->student->name}} {{$item->group}} {{$item->exam_name}} {{$item->roll}} {{$item->registration}} {{$item->session}} {{$item->passing_year}} {{number_format($item->gpa,2)}} {{number_format($item->out_of_gpa,2)}} {{$item->board}} @lang('Edit') @lang('Delete')
@push('styles') @endpush @else
@lang('No Related Data Found.')
@endif
@endsection @push('script') @endpush