@extends('layouts.main') @section('title', 'Ads Setting') @section('content') @push('head') @endpush
@include('include.message')
{{-- Active Networks --}}

Active Ads

    @foreach ($activeItems as $item)
  • {{ $item->label }}
  • @endforeach
{{-- Disabled Networks --}}

Available Ad Networks

    @foreach ($disabledItems as $item)
  • {{ $item->label }}
  • @endforeach

{{ __('Banner,Native,OnBack Button Ad Config') }}

@csrf



@push('script') @endpush @endsection