@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'Order Records'])
{{ $page_info['title'] }}
Back to list
@if(count($rows))
@csrf
@foreach($rows as $row)
{{ strip_tags($row->title) }}
@endforeach
Submit
@else
No record found for sorting
@endif
@include('cms.layouts.footers.auth')
@endsection