| 1234567891011121314151617181920 |
- <?php
- namespace App\Models;
- class Payback extends Model
- {
- protected $connection = "default";
- protected $table = 'payback';
-
- 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;
- }
- }
- }
|