Reworked the old Finances Library and renamed it FinanceHelper Library

This commit is contained in:
2018-12-03 20:29:02 -06:00
parent 28b98d2ef6
commit 3f6afa4daf
8 changed files with 288 additions and 163 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
class UserToCorporation extends Model
{
// Table Name
public $table = 'user_to_corporation';
// Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'character_name',
'corporation_id',
'corporation_name',
];
}