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