| 12345678910111213141516171819202122232425262728 | 
							- <?php
 - 
 - namespace App\Models;
 - 
 - use Illuminate\Database\Eloquent\Model;
 - use Illuminate\Database\Eloquent\Relations\BelongsTo;
 - use Wallo\FilamentCompanies\FilamentCompanies;
 - 
 - class CompanyInvitation extends Model
 - {
 -     /**
 -      * The attributes that are mass assignable.
 -      *
 -      * @var array<int, string>
 -      */
 -     protected $fillable = [
 -         'email',
 -         'role',
 -     ];
 - 
 -     /**
 -      * Get the company that the invitation belongs to.
 -      */
 -     public function company(): BelongsTo
 -     {
 -         return $this->belongsTo(FilamentCompanies::companyModel());
 -     }
 - }
 
 
  |