@extends('admin.layout.app')
@section('heading', 'Pricing Plans')
@section('rightside_button')
Add New
@endsection
@section('main_content')
# |
Status |
Title |
Subtitle |
Price |
Renew |
Actions |
@foreach ($pricings as $item)
{{ $loop->iteration }} |
{{ $item->status == 'show'?'Active':'N/A' }} |
{{ $item->title }} |
{{ $item->subtitle }} |
${{ number_format($item->price, 2) }} |
{{ $item->renew }} |
Edit
Delete
|
@endforeach
@endsection