Add price list management across the API, store, services, routes, navigation, and sales views. Support quotes for either a client or a client group, including PDF download and nullable client validation for group-based recipients. Extend client groups to manage assigned clients directly from the form and detail views, and refresh supplier, intervention, stock, and order screens with updated interactions and layouts.
16 lines
281 B
PHP
16 lines
281 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\PriceList;
|
|
|
|
class PriceListRepository extends BaseRepository implements PriceListRepositoryInterface
|
|
{
|
|
public function __construct(PriceList $model)
|
|
{
|
|
parent::__construct($model);
|
|
}
|
|
}
|