Edit File: PaymentBrand.php
<?php namespace App\Models; use App\Traits\ModelTrait; class PaymentBrand extends BaseModel { use ModelTrait; const IMAGEPATH = 'paymentbrands'; protected $fillable = [ 'image', 'name', 'type', 'status', 'entity_id', ]; }
Back to File Manager