MIF_E31222467/pos-smartphone-fix/app/Models/Testing.php

23 lines
364 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Testing extends Model
{
protected $table = 'testing';
protected $fillable = [
'no',
'data_1',
'data_2',
'data_3',
'target',
'brands',
];
public $timestamps = true;
}