45 lines
1.1 KiB
PHP
45 lines
1.1 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' => '$16',
|
|
'features' =>['Feature 1', 'Feature 2', 'Feature 3', 'Feature 4','Feature 5']
|
|
],
|
|
[
|
|
'icon' => '/static/media/unlimited.png',
|
|
'title' => 'Unlimited',
|
|
'text' => 'Professionals here.',
|
|
'price' => '$98',
|
|
'features' =>['Feature 11', 'Feature 22', 'Feature 33', 'Feature 44','Feature 55']
|
|
],
|
|
[
|
|
'icon' => '/static/media/premium.png',
|
|
'title' => 'Premium',
|
|
'text' => 'For small team.',
|
|
'price' => '$56',
|
|
'features' =>['Feature 6', 'Feature 77', 'Feature 88', 'Feature 99','Feature 100']
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
} |