-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBooth.php
53 lines (46 loc) · 1.42 KB
/
Booth.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
namespace App\Models;
use App\Actions\Log\ApprovalHandler;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Facades\Auth;
use Spatie\Activitylog\LogOptions;
use Spatie\Activitylog\Traits\LogsActivity;
class Booth extends Model
{
use HasFactory;
use LogsActivity;
protected $fillable = ['width', 'length', 'company_id', 'additional_information', 'is_approved'];
/**
* Establishes the relationship between the booth and
* the company that owns it
* @return BelongsTo
*/
public function company(): BelongsTo
{
return $this->belongsTo(Company::class);
}
/**
* Handle a (dis)approval of this Booth.
*
* @param bool $isApproved
* @return void
*/
public function handleApproval(bool $isApproved): void
{
(new ApprovalHandler())->execute($this, $isApproved);
}
/**
* Settings for the log system for this model
* @return LogOptions
*/
public function getActivitylogOptions(): LogOptions
{
return LogOptions::defaults()
->logAll()
->setDescriptionForEvent(fn(string $eventName) => "{$this->company->name}'s booth has been {$eventName} by " . Auth::user()->name)
->logOnlyDirty()
->dontLogIfAttributesChangedOnly(['is_approved']);
}
}