@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('student.id') }} | {{ __('student.name') }} | {{ __('student.college') }} | {{ __('student.section') }} | {{ __('student.program') }} | {{ __('student.batch') }} | {{ __('student.registration-fees') }} | {{ __('student.tuition-fees') }} | {{ __('student.insurance-fees') }} | {{ __('student.show') }} |
---|---|---|---|---|---|---|---|---|---|
{{ $student->student_id}} | {{ $student->student_name }} | {{ $student->college ? $student->college->name : _('student.not-set') }} | {{ $student->section->name ?? _('student.not-set') }} | {{ $student->program->name ?? _('student.not-set') }} | {{ $student->batch ? $student->batch->value : _('student.not-set') }} | {{ $student->registration_fees }} | {{ $student->program_fees / 2 }} | {{ $student->insurance_fees }} | {{ __('student.show') }} |
{{ __('student.id') }} | {{ __('student.name') }} | {{ __('student.college') }} | {{ __('student.section') }} | {{ __('student.program') }} | {{ __('student.batch') }} | {{ __('student.registration-fees') }} | {{ __('student.tuition-fees') }} | {{ __('student.insurance-fees') }} | {{ __('student.show') }} |