IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/SchoolLeavingCertificate.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use App\Traits;
use Carbon\Carbon;

class SchoolLeavingCertificate extends Model {
    protected $table = 'student_tc';
    protected $fillable = [
        'affiliation_no',
        'school_code',
        'student_id',
        'udise_no',
        'book_no',
        'sr_no',
        'admission_no',
        'name_of_pupil',
        'mother_name',
        'father_name',
        'dob_figures',
        'dob_words',
        'nationality',
        'belongs_sc_st_obc',
        'first_admission_date_class',
        'last_class_figures',
        'last_class_words',
        'last_exam_result',
        'failed_info',
        'subjects_studied',
        'promotion_class_figures',
        'promotion_class_words',
        'dues_paid_upto',
        'fee_concession',
        'school_leaving_date',
        'total_working_days',
        'working_days_present',
        'ncc_scout_guide',
        'extra_curricular',
        'general_conduct',
        'application_date',
        'certificate_issue_date',
        'reason_for_leaving',
        'remarks',
        'class_teacher_signature',
        'checked_by',
        'principal_signature',
        'idStudent',
        'idSchool',
        'idFinancialYear',
        'created_by'
    ];

    protected $casts = [
        'subjects_studied' => 'array',
        'application_date' => 'date',
        'certificate_issue_date' => 'date',
    ];
}

Copyright © 2021 - 2025 IMMREX7