Files
thankcard-system/app/Models/AddCard.php
T

24 lines
421 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class AddCard extends Model
{
use HasFactory;
protected $table = 'add_card';
public $timestamps = false;
protected $primaryKey = null;
public $incrementing = false;
protected $fillable = [
'buyer',
'num_card',
'seller',
'date',
];
}