17 lines
356 B
PHP
17 lines
356 B
PHP
<?php
|
|
|
|
namespace App\Models\Shop;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DeliveryPackage extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
protected $table = 'shop_delivery_packages';
|
|
|
|
public function scopeByWeight($query, $weight)
|
|
{
|
|
return $query->orderBy('weight')->where($this->table . '.weight', '>=', $weight);
|
|
}
|
|
}
|