@extends('../student_layout/' . $layout) @section('subhead') Atarud MIS - Students Complete Details @endsection @section('subcontent')

Profile: ({{ $data['student']->name }})

Personal Information

Download My Card
Name {{ $data['student']->name }}
Father Name {{ $data['student']->father_name }}
Gender {{ $data['student']->sex }}
Private Phone {{ $data['student']->private_phone }}
Family Phone {{ $data['student']->family_phone }}
Email {{ $data['student']->email }}
Address {{ $data['student']->address }}
Tazkira Number {{ $data['student']->tazkira_num }}
Reference Name {{ $data['student']->ref_name }}
Reference Phone {{ $data['student']->ref_phone }}
Discount @if($data['student']->discount == 0) {{ 'Not Allowed' }} @else {{ 'Allowed' }} @endif
Midone - HTML Admin Template

{{ $data['student']->id }}

Student Courses

@php $c = 0; @endphp @foreach ( $data['st_courses'] as $row) @php $program = App\Models\Program::where('id', $row->program_id)->first(); $semester = App\Models\Semester::where('id', $row->semester_id)->first(); $section = App\Models\Section::where('id', $row->section_id)->first(); $course = App\Models\Course::where('id', $row->course_id)->first(); @endphp @endforeach
# Program Semester Section Course Status
{{ ++$c }} {{ $program->title }} {{ $semester->name }} {{ $section->name }} {{ $course->title }} {{ $row->status }}

Invoices Information

{{-- --}} @php $c = 0 @endphp @foreach ( $data['invoice'] as $row) {{-- --}} @endforeach
# Net Amount Amount To Pay Amount Paid Tax Taxed Amount Due AmountDiscountDiscount
{{ ++$c }} {{ $row->net_amount }} {{ $row->payable_amount }} {{ $row->payment }} {{ $row->tax }} {{ $row->tax_amount }} {{ $row->due }}@if($row->discount == 0) {{ 'Not Allowed' }} @else {{ 'Allowed' }} @endif{{ $row->discount }}
@endsection @section('script') @endsection