Billie/app/Models/PHP/Topic_detail.php

13 lines
360 B
PHP
Raw Permalink Normal View History

2025-05-06 02:47:26 +00:00
<?php
namespace App\Models\PHP;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Topic_detail extends Model
{
protected $table = 'php_topics_detail'; // Sesuaikan dengan nama tabel di database
protected $fillable = ['title', 'id_topics' ,'controller', 'description', 'folder_path','file_name'];
}