CommunityNotice.php 277 B

1234567891011121314
  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. public function organization(){
  9. return $this->hasOne(Organization::class,'id','organization_id');
  10. }
  11. }