| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Models;
- class Bought extends Model
- {
- protected $connection = "default";
- protected $table = "bought";
- public function renew_date()
- {
- return date("Y-m-d H:i:s", $this->attributes['renew']);
- }
- public function datetime()
- {
- return date("Y-m-d H:i:s", $this->attributes['datetime']);
- }
-
- public function user()
- {
- $user = User::where("id", $this->attributes['userid'])->first();
- if ($user == null) {
- Bought::where('id', '=', $this->attributes['id'])->delete();
- return null;
- } else {
- return $user;
- }
- }
-
- public function shop()
- {
- return Shop::where("id", $this->attributes['shopid'])->first();
- }
- }
|