adrema/app/Member/Member.php

88 lines
2.4 KiB
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
2020-06-02 23:45:25 +02:00
namespace App\Member;
2020-04-12 00:26:44 +02:00
use App\Events\MemberCreated;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
class Member extends Model
{
use Notifiable;
2021-04-10 01:16:26 +02:00
public $fillable = ['firstname', 'lastname', 'nickname', 'other_country', 'birthday', 'joined_at', 'sendnewspaper', 'address', 'further_address', 'zip', 'city', 'phone', 'mobile', 'business_phone', 'fax', 'email', 'email_parents', 'nami_id', 'active', 'letter_address', 'country_id', 'way_id', 'nationality_id', 'subscription_id', 'region_id', 'gender_id', 'confession_id'];
2020-04-12 00:26:44 +02:00
public $dates = ['joined_at', 'birthday'];
public $casts = [
'active' => 'boolean',
'sendnewspaper' => 'boolean',
'gender_id' => 'integer',
'way_id' => 'integer',
'country_id' => 'integer',
'region_id' => 'integer',
'confession_id' => 'integer',
'nami_id' => 'integer',
];
2020-06-02 23:45:25 +02:00
public function scopeSearch($q, $text) {
return $q->where('firstname', 'LIKE', '%'.$text.'%')
->orWhere('lastname', 'LIKE', '%'.$text.'%')
->orWhere('address', 'LIKE', '%'.$text.'%')
->orWhere('zip', 'LIKE', '%'.$text.'%')
->orWhere('city', 'LIKE', '%'.$text.'%');
2020-04-12 00:26:44 +02:00
}
2020-06-02 23:45:25 +02:00
2020-04-12 00:26:44 +02:00
//----------------------------------- Getters -----------------------------------
public function getFullnameAttribute() {
return $this->firstname.' '.$this->lastname;
}
//---------------------------------- Relations ----------------------------------
public function country()
{
return $this->belongsTo(\App\Country::class);
}
public function gender()
{
return $this->belongsTo(\App\Gender::class);
}
public function region()
{
return $this->belongsTo(\App\Region::class);
}
public function confession()
{
return $this->belongsTo(\App\Confession::class);
}
public function payments()
{
return $this->hasMany(\App\Payment::class)->orderBy('nr');
}
public function way()
{
2020-06-02 23:45:25 +02:00
return $this->belongsTo(App\Way::class);
2020-04-12 00:26:44 +02:00
}
public function nationality()
{
2020-06-02 23:45:25 +02:00
return $this->belongsTo(App\Nationality::class);
2020-04-12 00:26:44 +02:00
}
public function memberships()
{
2020-06-02 23:45:25 +02:00
return $this->hasMany(App\Membership::class);
2020-04-12 00:26:44 +02:00
}
public function subscription()
{
2020-06-02 23:45:25 +02:00
return $this->belongsTo(App\Subscription::class);
2020-04-12 00:26:44 +02:00
}
}