Shop.php 294 B

1234567891011121314151617181920
  1. <?php
  2. namespace App;
  3. use App\Traits\ModelTimeFormat;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Shop extends Model
  6. {
  7. //
  8. use ModelTimeFormat;
  9. protected $fillable = ['name','owner_id'];
  10. public function owner()
  11. {
  12. return $this->belongsTo(Owner::class);
  13. }
  14. }