@extends("admin.template.layout") @section('header') @endsection @section('content')
{{ $page_heading }}
@csrf @if(isset($id)) @endif
@foreach(\App\Models\Campaign::WEEK_DAYS as $key => $day)
days) ?? [])) checked @endif class="weekday" value="{{$key}}"/>
@endforeach
@foreach(\App\Models\Campaign::PRIORITIES as $key => $priority)
priority) checked @endif value="{{$key}}"/>
@endforeach
Ads
@foreach($face_ads as $ad)
id, $campaign->faceAds->pluck('id')->toArray() ?? [])) checked @endif class="weekday" value="{{$ad->id}}"/>
@endforeach
@foreach($promotional_ads as $ad)
id, $campaign->promotionalAds->pluck('id')->toArray() ?? [])) checked @endif class="weekday" value="{{$ad->id}}"/>
@endforeach
@foreach($social_ads as $ad)
id, $campaign->socialAds->pluck('id')->toArray() ?? [])) checked @endif class="weekday" value="{{$ad->id}}"/>
@endforeach
Settings
@stop @section('script') @stop