Request - Fitur attachment MCU di Prime Center
This commit is contained in:
Muhammad Fajar
2023-07-18 11:58:55 +07:00
parent 40da45c9ff
commit 5632e9ff29
9 changed files with 213 additions and 20 deletions

14
app/Models/FilesMcu.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class FilesMcu extends Model
{
use HasFactory;
protected $table = 'filesmcu';
protected $primaryKey = 'id';
protected $fillable = ['member_id', 'path', 'created_by', 'created_at'];
}