@can('actor.create')
add {{__('adminstaticwords.CreateActor')}}
@endcan
@can('actor.delete')
delete {{__('adminstaticwords.DeleteSelected')}}
@endcan
@if(isset($actors) && $actors->count() > 0)
@foreach($actors as $item)
@endforeach
@endif
@if($item->image != NULL)
@else
@endif
{{$item->name}}
{{__('DOB')}}
{{isset($item->DOB) && $item->DOB != NULL ? $item->DOB : '-' }}
{{__('Place Of Birth')}}
{{isset($item->place_of_birth) && $item->place_of_birth != NULL ? str_limit($item->place_of_birth,30) : '-'}}
{{__('BioGraphy')}}
{{isset($item->biography) && $item->biography != NULL ? str_limit($item->biography,50) : '-'}}
{{__('Actor Emotions')}}
{!! $actors->appends(request()->query())->links() !!}
@else