{{ __('comment.comments') }}
@if (count($data))
| ID |
{{ __('comment.name') }} |
{{ __('comment.position') }} |
{{ __('comment.photo') }} |
{{ __('General.updated') }} |
{{ __('General.Options') }} |
@foreach ($data as $key => $comment)
| {{ $comment->id }} |
{{ $comment->name }} |
{{ $comment->position }} |
|
{{ $comment->updated_at }} |
{{ Form::open(['method' => 'DELETE', 'style' => 'margin-top: -12%;', 'action' => ['Admin\CommentsController@destroy', $comment->id]]) }}
{{ Form::hidden('id', $comment->id) }}
{{ Form::close() }}
|
@endforeach
@else
{{ __('General.No Data Avalible') }}
@endif
{{ $data->links() }}