Hi! I’m Bishwajit, a passionate software developer with 4+ years of experience specializing in Laravel. I currently work at KinDigi, where I focus on building scalable and efficient web applications. My goal is to craft clean, maintainable code and deliver robust solutions for complex problems.
<?php
class Car {
function Car() {
$this->model = "Tesla";
}
}
// create an object
$lightning = new Car();
// show object properties
echo $lightning->model;
?>