@extends('layouts.admin') @section('title',__('All Addvertisments')) @section('content')
@can('banneradd.create') add {{__('Create Post')}} @endcan @can('banneradd.delete') delete {{__('Delete Selected')}} @endcan
@if(isset($banneradd) && $banneradd->count() > 0) @foreach($banneradd as $item)
@if($item->image != NULL) ... @else ... @endif
{{__('Link')}}

{!! isset($item->link) && $item->link != NULL ? str_limit($item->link,100) : '-' !!}

{{__('Status')}}
@if($item->is_active == 1)

{{__('Active')}}

@else

{{__('De Active')}}

@endif
{{__('Column')}}
@if($item->column == 1)

{{__('One Column')}}

@else

{{__('Two Column')}}

@endif
{{--
{{__('Blog Emotions')}}
  • desktop_mac
  • @can('blog.edit')
  • mode_edit
  • @endcan @can('blog.delete')
  • delete
  • @endcan
--}}
@endforeach
{!! $banneradd->appends(request()->query())->links() !!}
@else
{{__("Let's start :)")}}
{{__('Get Started by creating a actor! All of your actors will be displayed on this page.')}}
@endif
@endsection @section('custom-script') @endsection