I am new to Laravel. I want to fetch all the values in id
column from table skills
. It is auto incrementing and the primary key of the table.
The following shows my function to get skills:
public function getSkillList(){
$skill = Skills::orderBy('id', 'ASC')->get();
echo $skill->id;
Property [id] does not exist on this collection instance.
I get this error. Can anyone please help to fix this?