LMS dapat upload dokumen TC corporate
This commit is contained in:
ivan-sim
2023-09-19 13:42:05 +07:00
parent ed2d5ee90a
commit 21e146da7e
7 changed files with 346 additions and 2 deletions

14
app/Models/FilesDoc.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 FilesDoc extends Model
{
use HasFactory;
protected $table = 'files_doc';
protected $primaryKey = 'id';
protected $fillable = ['corporate_id', 'original_name', 'path', 'created_by','updated_by', 'created_at', 'updated_at'];
}