File "VehicleRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Transportation/VehicleRepository.php
File size: 362 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Transportation;
use App\Models\Vehicle;
use App\Repositories\Base\BaseRepository;
class VehicleRepository extends BaseRepository implements VehicleRepositoryInterface
{
public function __construct(Vehicle $model)
{
parent::__construct($model, 'vehicle');
}
// Add vehicle-specific methods if needed
}