ArticleNote.php 216 B

1234567891011121314
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ArticleNote extends Model
  5. {
  6. protected $primaryKey = 'id';
  7. protected $table = 'article_note';
  8. protected $guarded = [];
  9. }