cleanup
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Fleets;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AllianceFleet extends Model
|
||||
{
|
||||
/**
|
||||
* Table Name
|
||||
*/
|
||||
protected $table = 'alliance_fleets';
|
||||
|
||||
/**
|
||||
* Timestamps
|
||||
*/
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'fleet_id',
|
||||
'fleet_commander_id',
|
||||
'fleet_commander_name',
|
||||
'member_count',
|
||||
'fleet_opened_time',
|
||||
'fleet_closed_time',
|
||||
];
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Fleets;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AllianceFleetMember extends Model
|
||||
{
|
||||
/**
|
||||
* Table Name
|
||||
*/
|
||||
protected $table = 'alliance_fleet_members';
|
||||
|
||||
/**
|
||||
* Timestamps
|
||||
*/
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'fleet_id',
|
||||
'character_id',
|
||||
'character_name',
|
||||
'fleet_joined_time',
|
||||
'fleet_leaved_time',
|
||||
];
|
||||
}
|
||||
@@ -25,6 +25,7 @@ class RentalMoonInvoice extends Model
|
||||
'character_name',
|
||||
'corporation_id',
|
||||
'corporation_name',
|
||||
'invoice_id',
|
||||
'rental_moons',
|
||||
'invoice_amount',
|
||||
'due_date',
|
||||
|
||||
Reference in New Issue
Block a user