@extends('admin.layouts.master') @section('content')

Sentiment keyword's List

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@forelse($sentiments as $row) @empty @endforelse
Id Type Keyword Created At Action
{{ $row->id }} {{ $row->type }} {{ $row->keyword }} {{ $row->created_at->format('d M Y') }}  
{{ method_field('DELETE') }} {{ csrf_field() }}
@endsection