@extends('backend.layouts.app')
@section('title')
{{ __('post_list') }}
@endsection
@section('content')
{{ __('country') }} |
@if (userCan('post.edit') || userCan('post.delete'))
{{ __('actions') }} |
@endif
@if ($posts->count() > 0)
@foreach ($posts as $post)
{{ $post->name }}
|
@if (userCan('post.update') || userCan('post.delete'))
@if (userCan('post.update'))
@endif
@if (userCan('post.delete'))
@endif
|
@endif
@endforeach
@else
{{ __('no_data_found') }} |
@endif
@if (request('perpage') != 'all' && $posts->total() > $posts->count())
@endif
@endsection
@section('style')
@endsection
@section('script')
@endsection