@extends('dashboard.layouts.main') @section('content')
@if(Session('success'))
× @lang('home.success')! {{session('success')}}.
@endif @foreach($ads as $ad) @endforeach
# @lang('home.title') @lang('home.icon') @lang('home.status') @lang('home.banned_list_messages') @lang('home.show') / @lang('home.hide') @lang('home.delete')
{{ @$ad->id }} {{ @$ad->translations->first()->title }} {{ @$ad->translations->first()->title }} @if(@$ad->status == 'show') @lang('home.show') @else @lang('home.hide') @endif @include('dashboard.ads.model_banned_list') @include('dashboard.ads.banned_from_list') @include('dashboard.ads.delete_from_list')
@stop