@extends('layouts.admin') @section('title', 'Feature Credit Costs') @section('header_title', 'Manage Feature Credit Costs') @section('content')

Feature Credit Costs

Define New Cost
@include('admin.partials.alerts')
@if($featureCosts->isEmpty())

No feature credit costs defined yet. Define one now.

@else
@foreach ($featureCosts as $cost) @endforeach
Feature Key Credit Cost Actions
{{ $cost->feature_key }} {{ $cost->credit_cost }} Edit
@csrf @method('DELETE')
{{ $featureCosts->links() }}
@endif
@endsection