penambahan api untuk admin dan pembaikian untuk imbangduga

This commit is contained in:
fifi97
2022-01-01 18:35:34 +08:00
parent 198613f5cd
commit 120b35dbb4
6 changed files with 1716 additions and 12 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Bajet extends Model
{
protected $table = 'bajet';
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}