@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Students Complete Details @endsection @if($data['student']->status == 'deactive') @endif @section('subcontent')

status == 'deactive') @endif>Profile: ({{ $data['student']->name }}) @if($data['student']->status == 'deactive') (Deactive) @endif

Personal Information

id."/")}}' class="btn btn-rounded-primary w-34 mr-1 ">Assign To New Course
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 }}
Account Status {{ ucfirst($data['student']->status) }}
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 Action
{{ ++$c }} {{ $program != null ? $program->title : '' }} {{ $semester != null ? $semester->name : '' }} {{ $section != null ? $section->name : '' }} {{ $course != null ? $course->title : '' }} {{ $row->status }}

Invoices Information

invoice.print @php $c = 0 @endphp @foreach ( $data['invoice'] as $row) @endforeach
# Net Amount Amount To Pay Amount Paid Tax Taxed Amount Due Amount Discount Action
{{ ++$c }} {{ $row->net_amount }} {{ $row->payable_amount }} {{ $row->payment }} {{ $row->tax }} {{ $row->tax_amount }} {{ $row->due }} {{ $row->discount }} Print

Payments Information

@php $c = 0 @endphp @foreach ( $data['payments'] as $row) @endforeach
# Amount Date
{{ ++$c }} {{ $row->amount }} {{ $row->timestamp }}
@endsection @section('script') @endsection