@extends('layouts.main') @section('title', 'AdNetwork List ') @section('content') @push('head') @endpush
@include('include.message')
@foreach ($networks as $network)
{{$network->title}}
@php $typeLabels = [ 'b' => 'Banner Ad', 'i' => 'Interstitial Ad', 'n' => 'Native Ad', 'r' => 'Rewarded Ad', ]; $tags=explode(',',$network->tag) @endphp @foreach ($tags as $code) @if (isset($typeLabels[$code])) {{ $typeLabels[$code] }} @endif @endforeach
Status : @if($network->status==1) Active @elseDisabled@endif
@endforeach
@include('model') @push('script') @endpush @endsection