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

{{__('Template Management')}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__('All templates')}}
@if(count($rows) > 0) @foreach($rows as $row) @endforeach @else @endif
{{__('Title')}} {{__('Date')}} {{__('Export')}}
{{$row->title}} {{$row->updated_at}} {{__('Export')}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection