@extends('Layouts/dashboard')
@section('submenu')
@include(
'Plugins/Payment/Views/Elements/Zone/submenu'
)
@endsection
@section('content')
@t('ID') |
@t('Name') |
@t('Type') |
@t('Order') |
@t('Weekly Times') |
|
@foreach ($data as $row)
{{ $row->id }} |
{{ $row->name }} |
{{ $row->type }} |
{{ $row->ordering }} |
{{ ($row->weekly_times ? __('Yes') : __('No')) }} |
|
@endforeach
{!! pagination(['total' => $pagination_total]) !!}
@endsection