Card.php 200 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Card extends Model
  5. {
  6. protected $table = 'love_card';
  7. protected $fillable = [
  8. 'name', 'type','num'
  9. ];
  10. }