@extends('layouts.admin')
@section('title')
PubblicitĂ Sezione {{$section->name}}
@stop
@section('content')
@foreach($aDatas as $idx => $data)
| Nome |
Google |
Immagine |
Online |
|
|
@foreach($data as $adv)
| {{$adv->name}} |
{{$adv->google_code}} |
@if($adv->image != '')
@endif
|
{{$adv->online ? 'Si' : 'No'}} |
|
|
@endforeach
@endforeach
@stop