1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
-
- namespace App\Models\Setting;
-
- use App\Concerns\Blamable;
- use App\Concerns\CompanyOwned;
- use App\Enums\Setting\EntityType;
- use App\Models\Locale\City;
- use App\Models\Locale\Country;
- use App\Models\Locale\State;
- 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\BelongsTo;
- use Illuminate\Support\Facades\Storage;
-
- class CompanyProfile extends Model
- {
- use Blamable;
- use CompanyOwned;
- use HasFactory;
-
- protected $table = 'company_profiles';
-
- protected $fillable = [
- 'company_id',
- 'logo',
- 'address',
- 'city_id',
- 'zip_code',
- 'state_id',
- 'country',
- '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 country(): BelongsTo
- {
- return $this->belongsTo(Country::class, 'country', 'id');
- }
-
- public function city(): BelongsTo
- {
- return $this->belongsTo(City::class, 'city_id', 'id');
- }
-
- public function state(): BelongsTo
- {
- return $this->belongsTo(State::class, 'state_id', 'id');
- }
-
- public function getCountryName(): string
- {
- return Country::findByIsoCode2($this->country)?->name ?? '';
- }
-
- protected static function newFactory(): Factory
- {
- return CompanyProfileFactory::new();
- }
- }
|