ChannelRecommendBookConfigService.php 304 B

12345678910111213141516
  1. <?php
  2. namespace App\Modules\Channel\Services;
  3. use App\Modules\Channel\Models\ChannelRecommendBookConfig;
  4. class ChannelRecommendBookConfigService
  5. {
  6. static function getRecommendConfigs($channel_id)
  7. {
  8. return ChannelRecommendBookConfig::where('channel_id',$channel_id)->first();
  9. }
  10. }