Files
api_arrahn/app/Bajet.php
T

26 lines
434 B
PHP

<?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 = [];
}