@extends('layouts.app') @section('content')
{{ logs_button('template') }}
@php $from = (request()->get('created_at') ) ? request()->get('created_at')[0]:''; $to = (request()->get('created_at') ) ? request()->get('created_at')[1]:''; @endphp
Clear
@php echo get_session_message() @endphp @php echo get_session_errors($errors) @endphp
Showing {{($list->currentpage()-1)*$list->perpage()+1}} to {{$list->currentpage()*$list->perpage()}} of {{$list->total()}} entries
@if( !$list->isEmpty() ) @foreach( $list as $index => $values ) @endforeach @endif
ID Template Title Key Notify Status Created at Action
#{{ $values->id }} {{ $values->type }} {{ $values->title }} {{ $values->key }} {{ $values->notification_type }} {{ $values->status == 1?'Active':'Disable' }} {{ default_datetime_format($values->created_at) }} {{ get_edit_button( route('templates.edit',$values->id),$values->id,'black text-primary','Edit') }} {{get_delete_button(route('delete.template',$values->id),$values->id,'black text-danger deleteRecord','Delete')}}
@endsection