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
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-
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 : User.php
<?php namespace App\Models; // use Illuminate\Contracts\Auth\MustVerifyEmail; use App\Notifications\WelcomeEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; use Spatie\Permission\Traits\HasRoles; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable, HasRoles, SoftDeletes; protected $guared = ['id']; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'name', 'email', 'password', 'mobile', 'dob', 'picture', ]; /** * The attributes that should be hidden for serialization. * * @var array<int, string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array<string, string> */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function user_roles(){ return $this->belongsToMany(Role::class,'model_has_roles','model_id'); } public function SendWelcomeEmail($data){ $this->notify(new WelcomeEmail($data)); } // TODO :: super role }
Close