Code.php 264 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * Code Model
  5. */
  6. class Code extends Model
  7. {
  8. protected $connection = 'default';
  9. protected $table = 'code';
  10. public function user()
  11. {
  12. return User::where('id', $this->attributes['userid'])->first();
  13. }
  14. }