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