@extends('layouts.app') @section('content')
@include('partials.title-pad', [ 'title' => __('View Feature Pricing').' ('.$feature->feature_name.')', // 'search' => $search ?? '', 'searchPlaceholder' => __('placeholders.search', ['static' => __('static.features')]), 'list' => $pricing, // 'create' => 'masters.sub_hobby.create', // 'export' => 'masters.sub_hobby.export', // 'filter' => 'filter', ])
@forelse ($pricing as $key => $p) @empty @endforelse
{{ __('datatable.id') }} {{ __('Qty From') }} {{ __('Qty Upto') }} {{ __('Price Type') }} {{ __('Weekly Price') }} {{ __('Fortnightly Price') }} {{ __('Monthly Price') }}
{{ $key + 1 }} {{ $p->qty_from }} {{ $p->qty_upto }} {{ intval($p->weekly_price) ? 'Paid' : 'Free' }} {{ $p->weekly_price }} {{ $p->fortnightly_price }} {{ $p->monthly_price }}

{{ __('labels.no_records_found') }}

{{-- Pagination --}} {{ $pricing->appends(request()->query())->links('partials.pagination') }} {{-- Pagination End --}}
@endsection {{-- @section('scripts') @endsection --}}