PostComment.php 264 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/6/6
  6. * Time: 11:21
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class PostComment extends Model
  11. {
  12. //
  13. protected $table = 'post_comment';
  14. protected $guarded = [];
  15. }