Edit File: PaymentBrandService.php
<?php namespace App\Services\Entity; use App\Models\PaymentBrand; class PaymentBrandService extends BaseService { /** * Initializes the IntroServiceService class. * * @param PaymentBrand $paymentBrand */ public function __construct(PaymentBrand $paymentBrand) { $this->model = $paymentBrand; } }
Back to File Manager