Fix newfilename calculation

This commit is contained in:
Deon George
2020-01-05 09:37:50 +11:00
parent 1ffc2d994e
commit 9c0a02c425
4 changed files with 26 additions and 10 deletions

12
app/Models/Jobs.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Jobs extends Model
{
protected $casts = [
'payload' => 'array',
];
}