Meenal Dubey

CDO - Chief Design Officer at Seller Drive

Meenal Dubey has worked in various roles in the IT domain since 2009. In 2009, they worked as a Web Designer at Vindia IT Services Pvt. Limited, where their key responsibilities included website designing, branding, HTML integration, flash work, and design implementation in .NET environment. From 2010 to 2015, they worked at Cliff Tech Limited as Creative Head and Creative Director. Her key responsibilities included ensuring and delivering quality output related to design and animation, as well as innovation and client satisfaction. From 2015 to 2018, they worked at Seller Drive-Authorized Partner with Amazon & Shopify as Business Development. In 2018, they moved back to Seller Drive-Authorized Partner with Amazon & Shopify as Creative Director. Since 2019, they have been working at Seller Drive-Amazon & Shopify (Partner & Experts) as Chief Design Officer, with their website being www.sellerdrive.com.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\User;

class UserController extends Controller

{

public function index(){

$users = User::all();

return view('users.index', compact('users'));

}

public function create(){

return view('users.create');

}

public function store(Request $request){

$user = new User();

$user->name = $request->name;

$user->email = $request->email;

$user->password = $request->password;

$user->save();

return redirect()->route('users.index');

}

public function edit($id){

$user = User::findOrFail($id);

return view('users.edit', compact('user'));

}

public function update(Request $request, $id){

$user = User::findOrFail($id);

$user->name = $request->name;

$user->email = $request->email;

$user->password = $request->password;

$user->save();

return redirect()->route('users.index');

}

public function destroy($id){

$user = User::findOrFail($id);

$user->delete();

return redirect()->route('users.index');

}

}

Links

Timeline

  • CDO - Chief Design Officer

    June, 2019 - present