IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/teachers/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/teachers/profile.blade.php

@extends('teachers.teacher_layout')
@section('content')
<div class="row clearfix">
    <div class="col-sm-12">
        <div class="card member-card" style="margin-bottom:10px;">
            <div class="member-img">
                <a href="#" class="">
                    <img src="{{ asset('storage/schools/'.$teacher->idSchool.'/employees/'.$teacher->photo)}}" class="rounded-circle">
                </a>
            </div>
            <div class="">
                <h5 class="m-t-10" style="margin: 0px;">{{$teacher->firstName}} {{$teacher->lastName}}</h5>
            </div>
            <div class="body" style="margin: 0px;">
                <div class="col-12">
                    <p>EC No. {{$teacher->enrollmentNo}}</p>
                </div>
            </div>
        </div>
    </div>
</div>
<div class="row clearfix">
    <div class="col-4">
        <p style="margin-bottom: 0px;"><strong>Basic Information</strong></p>
        <div class="card">
            <div class="tab-content">
                <div class="tab-pane body active" id="about">
                    <small class="text-muted"><strong>Contact No : {{$teacher->mobile}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>Email : {{$teacher->email}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>Address : {{$teacher->address}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>Date Of Joining : {{$teacher->doj}}</strong></small>
                    <hr>
                </div>
            </div>
        </div>
    </div>
    <div class="col-8">
        <div class="card">
            <div class="tab-content">
                <div class="tab-pane body active" id="about">
                    <small class="text-muted"><strong>Basic Salary : {{$salstr->basicSalary or ''}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>VDA : {{$salstr->vda or ''}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>HRA : {{$salstr->hra or ''}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>CONV : {{$salstr->conv or ''}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>EPF ACCOUNT : {{$salstr->epf_accountno or ''}}</strong></small> <small class="text-muted"><strong>EPF(%) : {{$salstr->epf or ''}}</strong></small>
                    <hr>
                    <small class="text-muted"><strong>ESI ACCOUNT : {{$salstr->esi_accountno or ''}}</strong></small> <small class="text-muted"><strong>ESI(%) : {{$salstr->esi or ''}}</strong></small>
                    <hr>
                    <p style="margin-bottom: 0px;"><strong>Payment History</strong></p>
                    <table class="table table-bordered">
                        <thead>
                            <tr>
                                <th>Month</th>
                                <th>Advance</th>
                                <th>Deduction</th>
                                <th>Deduction Remarks</th>
                            </tr>
                        </thead>
                        <tbody>
                          @foreach($payment_history as $v)
                            <tr>
                                <td>{{$v->month->monthName}}</td>
                                <td>{{$v->advance}}</td>
                                <td>{{$v->deduction}}</td>
                                <td>{{$v->deductionRemarks}}</td>
                            </tr>
                            @endforeach
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
</div>
@stop

Copyright © 2021 - 2025 IMMREX7