mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
32 lines
669 B
PHP
32 lines
669 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
|
use Laravel\Jetstream\Membership as JetstreamMembership;
|
|
|
|
/**
|
|
* @property string $id
|
|
* @property string $role
|
|
* @property int|null $billable_rate
|
|
* @property string $organization_id
|
|
* @property string $user_id
|
|
* @property string $created_at
|
|
* @property string $updated_at
|
|
* @property-read Organization $organization
|
|
* @property-read User $user
|
|
*/
|
|
class Membership extends JetstreamMembership
|
|
{
|
|
use HasUuids;
|
|
|
|
/**
|
|
* The table associated with the pivot model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'organization_user';
|
|
}
|