<?php
namespace Portfolio;
use Skills\FullStack;
use Experience\WebDeveloper;
class JayBayron extends SoftwareDeveloper
{
public $contact = [
'phone' => '+63 932 532 5405',
'location' => 'Antipolo City, PH',
];
public function workExperience()
{
return [
'Cal4Care Phils Inc.' => [
'role' => 'Web Developer (PHP)',
'period' => 'Jan 2024 - Present',
],
'Freelance' => [
'role' => 'Full Stack Developer',
'period' => 'May 2023 - Nov 2023',
],
];
}
public $skills = [
'Languages' => ['PHP', 'JavaScript', 'Dart'],
'Frameworks' => ['Laravel', 'Livewire', 'Flutter', 'Phalcon', 'Vue.js'],
'Frontend' => ['Tailwind CSS', 'Bootstrap', 'CSS3'],
'Database' => ['MySQL', 'PostgreSQL', 'SQLite', 'Redis'],
'Real-time' => ['WebSockets', 'Socket.IO', 'Pusher'],
'Cloud/DevOps' => ['AWS', 'DigitalOcean', 'GCP', 'Linux', 'Git'],
];
public $education = [
'degree' => 'BS Computer Science',
'school' => 'The University of Manila',
'graduated' => 'Sept 2023',
];
}
?>