# Channels
# Overview
Default webstore
.
# Assigning channels to models.
You can assign Eloquent models to different channels and specify whether they are enabled permanently or whether they should be scheduled to be enabled.
In order to add this kind of functionality to your model, you need to add the HasChannels
trait.
<?php
namespace GetCandy\Traits\HasChannels;
// ...
class Product extends Model
{
use HasChannels;
}
When add this trait, you will have access to the scheduleChannel
method:
$channel = App\Models\Channel::first();
// Will schedule for this product to be enabled in 14 days for this channel.
// and will be disabled after 24 days
$product->scheduleChannel($channel, now()->addDays(14), now()->addDays(24));
// Schedule the product to be enabled straight away
$product->scheduleChannel($channel);
// The schedule method will accept and array or collection of channels.
$product->scheduleChannel(Channel::get());
← Carts Collections →