datafile rename

This commit is contained in:
2023-02-04 16:03:41 -05:00
parent 36a0b0d2f0
commit 2d43eb253f
9 changed files with 0 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class myfitResources extends Model
{
public function __construct()
{
parent::__construct();
}
public function getSiteResources($in)
{
return [
'pricing_text_02' => 'This will be the test header test 001',
'pricing' => [
[
'icon' => '/static/media/standard.png',
'title' => 'Standard',
'text' => 'For the basics.',
'price' => 'Free',
'price_anual' => 'Free',
'features' => [
'Reminders',
'Health Tracking',
'Analytics',
'Notifications',
'Health Resources',
],
],
[
'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',
'Integrations',
'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',
'Custom Dashboard',
'Recomendations',
'Storage',
],
],
],
];
}
}