array_push($arraye , ['title'=>$data['title'] , 'desc'=> $data['desc']]);
public function index()
{
$collection = collect(['id' => 1, 'name' => 'Hardik']);
$collection->put('role', 'admin');
$collection->all();
dd($collection);
}