12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
-
- namespace App\Models\Setting;
-
- use App\Concerns\Blamable;
- use App\Concerns\CompanyOwned;
- use App\Enums\Setting\EntityType;
- use App\Models\Common\Address;
- use Database\Factories\Setting\CompanyProfileFactory;
- use Illuminate\Database\Eloquent\Casts\Attribute;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\MorphOne;
- use Illuminate\Support\Facades\Storage;
-
- class CompanyProfile extends Model
- {
- use Blamable;
- use CompanyOwned;
- use HasFactory;
-
- protected $table = 'company_profiles';
-
- protected $fillable = [
- 'company_id',
- 'logo',
- 'phone_number',
- 'email',
- 'tax_id',
- 'entity_type',
- 'created_by',
- 'updated_by',
- ];
-
- protected $casts = [
- 'entity_type' => EntityType::class,
- ];
-
- protected $appends = [
- 'logo_url',
- ];
-
- protected function logoUrl(): Attribute
- {
- return Attribute::get(static function (mixed $value, array $attributes): ?string {
- if ($attributes['logo']) {
- return Storage::disk('public')->url($attributes['logo']);
- }
-
- return null;
- });
- }
-
- public function address(): MorphOne
- {
- return $this->morphOne(Address::class, 'addressable');
- }
-
- protected static function newFactory(): Factory
- {
- return CompanyProfileFactory::new();
- }
- }
|