ProjectSpaceInfo.php 329B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. use Spatie\Translatable\HasTranslations;
  6. class ProjectSpaceInfo extends Model
  7. {
  8. //
  9. use HasTranslations, SoftDeletes;
  10. protected $guarded = ["id"];
  11. protected $translatable = ["title", "content"];
  12. }