Skip to content

Commit 1250ab3

Browse files
Update config.php
1 parent 30f45ca commit 1250ab3

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

config.php

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
<?php
2-
// config.php
32

43
return [
54
'site_name' => 'Simple PHP Web',
6-
'pricings' => [],
5+
'pricings' => [
6+
[
7+
'title' => 'Basic',
8+
'price' => '$10',
9+
'features' => ['Feature A', 'Feature B'],
10+
],
11+
[
12+
'title' => 'Pro',
13+
'price' => '$25',
14+
'features' => ['Feature A', 'Feature B', 'Feature C'],
15+
],
16+
[
17+
'title' => 'Enterprise',
18+
'price' => '$50',
19+
'features' => ['All Features'],
20+
]
21+
],
722
];

0 commit comments

Comments
 (0)