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

{{ __('Pricing Table List') }}

@csrf
@foreach($posts as $post) @endforeach
{{ __('Title') }} {{ __('Price') }} {{ __('Status') }} {{ __('Last Update') }}
{{ $post->title }} {{ $post->productMeta->s_price }} @if($post->status==1) {{ __('Published') }} @elseif($post->status==2) Draft @else {{ __('Trash') }} @endif {{ __('Last Modified') }}
{{ $post->updated_at->diffForHumans() }}
{{ __('Title') }} {{ __('Price') }} {{ __('Status') }} {{ __('Last Update') }}
{{ $posts->links() }}
@endsection @section('script') @endsection