TutorialContent.php 208 B

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