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

Return Policy

@if (count($returns) === 0) Add @endif
@if (Session::has('flash_success'))
{{ Session::get('flash_success') }}
@endif @if (Session::has('flash_error'))
{{ Session::get('flash_error') }}
@endif
@forelse ($returns as $key => $return) @empty @endforelse
# Heading Content Action
{{ $key + 1 }} {{ $return->heading }} {!! \Illuminate\Support\Str::limit(strip_tags($return->content), 450) !!}
No return policy found.
{{-- @if(method_exists($returns, 'links'))
{{ $returns->links('pagination::bootstrap-4') }}
@endif --}}
@endsection