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

{{ __('All Plans')}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Title')}} {{ __('Author')}} {{__('Date')}} {{__('Status')}}
{{$row->name}} {{$row->getAuthor->getDisplayName() ?? ''}} {{ display_date($row->updated_at)}} {{ $row->status }}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection