Tables Data Array - data.php

data - array - all tables

<?php

return [
[
'slug' => 'sde-1',
'name' => 'SDE 1',
'salary' => 120000,
'description' => 'Software Development Engineer 1'
],
[
'slug' => 'sde-2',
'name' => 'SDE 2',
'salary' => 150000,
'description' => 'Software Development Engineer 2'
],
[
'slug' => 'sde-3',
'name' => 'SDE 3',
'salary' => 200000,
'description' => 'Senior Software Development Engineer'
],
[
'slug' => 'pm',
'name' => 'Product Manager',
'salary' => 180000,
'description' => 'Product Manager with team leadership and budget responsibility'
],
[
'slug' => 'tech-lead',
'name' => 'Tech Lead',
'salary' => 250000,
'description' => 'Technical lead with team management and architecture responsibilities'
],
[
'slug' => 'cto',
'name' => 'CTO',
'salary' => 350000,
'description' => 'Chief Technology Officer with strategic leadership'
],
];

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.