Added telescope, basic project endpoint, basic filament resources, GitHub actions

This commit is contained in:
Constantin Graf
2024-01-28 18:57:28 +01:00
parent e4f0eac834
commit e60e502612
80 changed files with 2563 additions and 135 deletions

View File

@@ -15,6 +15,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* @property string $id
* @property string $name
* @property string $color
* @property string $organization_id
* @property string $client_id
* @property-read Organization $organization
@@ -35,6 +36,7 @@ class Project extends Model
*/
protected $casts = [
'name' => 'string',
'color' => 'string',
];
/**