Add SoftDeletes trait to companygateway model

This commit is contained in:
David Bomba 2020-06-05 07:21:30 +10:00
parent 2309a36620
commit 4864f8bd84

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',