CommunityNotice.php 360 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CommunityNotice extends Model
  5. {
  6. //
  7. protected $table = 'community_notice';
  8. protected $fillable = ['title','organization_id','type','content','admin_id'];
  9. public function organization(){
  10. return $this->hasOne(Organization::class,'id','organization_id');
  11. }
  12. }