Merge pull request #3786 from turbo124/v2

Add SoftDeletes trait to companygateway model
This commit is contained in:
David Bomba 2020-06-05 07:21:48 +10:00 committed by GitHub
commit 3b260504e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,9 +17,12 @@ use App\Models\Gateway;
use App\Models\GatewayType;
use App\Utils\Number;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class CompanyGateway extends BaseModel
{
use SoftDeletes;
protected $casts = [
'fees_and_limits' => 'object',
'updated_at' => 'timestamp',