Advertise.php 294 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Advertise extends Model
  5. {
  6. protected $fillable = [
  7. 'name', 'tpid', 'sort', 'image', 'href'
  8. ];
  9. public function type()
  10. {
  11. return $this->belongsTo(AdvertisesType::class, 'tpid');
  12. }
  13. }