1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class Mention extends Model
- {
- use SoftDeletes;
- /**
- * The attributes that should be mutated to dates.
- *
- * @var array
- */
- protected $casts = [
- 'deleted_at' => 'datetime'
- ];
- protected $guarded = [];
- public function profile()
- {
- return $this->belongsTo(Profile::class, 'profile_id', 'id');
- }
- public function status()
- {
- return $this->belongsTo(Status::class, 'status_id', 'id');
- }
- }
|