48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class myfitPricing extends Model
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
public function getSitePricing($in)
|
|
{
|
|
|
|
return array
|
|
(
|
|
[
|
|
'icon' => '/static/media/standard.png',
|
|
'title' => 'Standard',
|
|
'text' => 'For the basics.',
|
|
'price' => 'Free',
|
|
'price_anual' => 'Free',
|
|
'features' =>['Reminders', 'Health Tracking', 'Feature 3', 'Feature 4','Feature 5']
|
|
],
|
|
[
|
|
'icon' => '/static/media/unlimited.png',
|
|
'title' => 'Unlimited',
|
|
'text' => 'Professionals here.',
|
|
'price' => '$7.99/m',
|
|
'price_anual' => '$55/y',
|
|
'features' =>['Everyting Premium', 'Feature 22', 'Feature 33', 'Feature 44','Custom Page']
|
|
],
|
|
[
|
|
'icon' => '/static/media/premium.png',
|
|
'title' => 'Premium',
|
|
'text' => 'For small team.',
|
|
'price' => '$5/m',
|
|
'price_anual' => '$45/y',
|
|
'features' =>['Everything Standard', 'Group/Family Tracking', 'Feature 88', 'Feature 99','Feature 100']
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
} |