process wallet journal job which is a new job to make system faster for cron
This commit is contained in:
27
app/Models/Jobs/ProcessWalletJournalJob.php
Normal file
27
app/Models/Jobs/ProcessWalletJournalJob.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Jobs;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ProcessWalletJournalJob extends Model
|
||||
{
|
||||
//Table Name
|
||||
public $table = 'job_process_wallet_journal';
|
||||
|
||||
//Timestamps
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'charId',
|
||||
'division',
|
||||
'page',
|
||||
];
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user