Files
w4rpservices/app/Models/User/UserToCorporation.php

27 lines
459 B
PHP

<?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',
];
}