@extends('layouts.master') @section('title',__('All Blogs')) @section('breadcum') @endsection @section('maincontent')
{{ __('All Blogs') }}
@can('movies.create') @endcan @can('movies.delete') {{ __('Add Blog') }} @endcan
@if(isset($blogs) && $blogs->count() > 0) @foreach($blogs as $item)
@if($item->image != NULL) ... @else ... @endif
{{$item->title}}

{{__('Description')}}

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

{{__('Status')}}

@if($item->is_active == 1)

{{__('Active')}}

@else

{{__('De Active')}}

@endif

@endforeach
{!! $blogs->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('script') @endsection