| 12345678910111213141516 |
- <?php
-
- namespace App\Models;
-
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- use Spatie\Translatable\HasTranslations;
-
- class ProjectSpaceInfo extends Model
- {
- //
- use HasTranslations, SoftDeletes;
- protected $guarded = ["id"];
- protected $translatable = ["title", "content"];
- }
|