TutorialContent.php 265 B

1234567891011121314
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Te7aHoudini\LaravelTrix\Traits\HasTrixRichText;
  5. use App\Traits\ModelTimeFormat;
  6. class TutorialContent extends Model
  7. {
  8. use ModelTimeFormat;
  9. use HasTrixRichText;
  10. protected $guarded=[];
  11. }