Notifications & Approvals
Accounts
Select any activated accounts from the list that you would like the system to auto-generate and schedule posts for you.
@php
$allChecked = true;
$autoAccounts = $_account->auto_accounts_array();
if(!empty($autoAccounts)){
$allChecked = false;
}
@endphp
@foreach($user->platformAccounts as $platformAccount)
id, $autoAccounts)) checked @endif>
@endforeach
Categories
Select available categories from the list. These will be used by the system upon adding posts to your queue.
@php
$allChecked = true;
$autoCategories = $_account->auto_categories_array();
if(!empty($autoCategories)){
$allChecked = false;
}
@endphp
@foreach(\App\Models\Category::where('domain_id', 1)->orderBy('name')->get() as $category)
id, $autoCategories)) checked @endif>
@endforeach