File "PickupPointRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Transportation/PickupPointRepository.php
File size: 335 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Transportation;
use App\Models\PickupPoint;
use App\Repositories\Base\BaseRepository;
class PickupPointRepository extends BaseRepository implements PickupPointRepositoryInterface
{
public function __construct(PickupPoint $model)
{
parent::__construct($model, 'PickupPoint');
}
}