@extends('general.index', $setup)
@section('thead')
{{ __('Name') }} |
{{ __('Type') }} |
{{ __('crud.actions') }} |
@endsection
@section('tbody')
@foreach ($setup['items'] as $item)
| {{ $item->name }} |
{{ $item->type==1?__('Just a quick reply'):($item->type==2?__('Reply bot: On exact match'):__('Reply bot: When message contains')) }} |
|
@endforeach
@endsection