Modified folders for commands.

Added job for retrieving assets from esi.
Modified moon rental data to flow better with views.
This commit is contained in:
2019-06-04 03:47:00 -05:00
parent fe837da592
commit 676117c053
20 changed files with 404 additions and 482 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models\Jobs;
use Illuminate\Database\Eloquent\Model;
class JobProcessAsset extends Model
{
//no table name is needed
//Timestamps
public $timestamps = false;
protected $fillable = [
'charId',
'corpId',
'page',
'esi',
];
}