You are on page 1of 11

SHRI SHAMBHUBHAI V.

PATEL COLLEGE OF COMPUTER


SCIENCE & BUSINESS MANAGEMENT
Affiliated to
VEER NARMAD SOUTH GUJARAT UNIVERSITY
SURAT
A PROJECT REPORT ON
“Clothes on rent”

As a partial fulfilment for the degree of


Bachelor of Computer Application (B.C.A.)
Academic Year: 2022-2023
Submitted By: Guided By:
Dhanani Harsh S.(224) Prof. Hardik Gangadwala
Desai Sneh M. (219)
Hirpara Keyur K.(246)
INDEX
Introduction

The real power of this project lies not in direct provide clothes, but in
the creation of tighter relationships with customers and delivering of a
high level of clothes, which in turn improves organization sales and its
goodwill. A service organization is a business entity that takes care of
servicing a customer instrument in the after sales domain. As the
number of customers and size of operations increases, the organization
divides the geographical area into service areas and branch locations,
to allow Admin to be more responsive to the customer-needs.
Modules
1.Admin
-Home
-Seller
-Orders
-Category
-Subcategory
-Color
-Size
2.Delivery
-Dashboard
-order
3.Seller
-Dashboard
-product
-order
4.Client
-Login
-Registration
-Home
-Shop
-Contact us
-About
-Cart
-Profile
Similar Website
1.www.rentpelelo.com
2.www.dressrent.in
3.www.theclothingrental.com
4.www.rentattire.com
5.www.kuroindia.in

Header: logo , after menu in menu Home,Shop,Contact us,About this all are at left
side. Right side is search option,Profile,Cart.
Footer: At left side we’ll put description of our store and after middle log in and
contact link and in last right side we’ll make payments methods.

Laravel
Adv. - high security, robust deployments, and simple coding
Disadv. - Lightweight framework,high cost,limited support,slow

Php
Adv. –Free to use, Support of community, Easy to use, Lightning speed
Disadv -Limited debugging tools, Can't modify core behavior, Security is not the best, There are easier to
use languages out there

Mysql
Adv.- MySQL is at the top of the list of fast transactional database solutions available today.
Disadv.- MySQL is not very efficient in handling very large databases
Tables
Table Field Null Key Datatype
attributes
attr_id not null primary key int(11)
p_id not null int(11)
type not null int(2)
a_id not null int(11)

Table Field Null Key Datatype


categories
c_id not null primary key int(11)
c_name not null varchar(20)

Table Field Null Key Datatype


colors
color_id not null primary key int(11)
color_name not null text

Table Field Null Key Datatype


coupons
coupon_id not null primary key int(11)
coupon_code not null varchar(100)
amount not null varchar(100)
min_order not null varchar(100)
start_date not null date
end_date not null date
no_users not null int(5)
type not null int(2)
u_id not null int(11)
status not null int(2)

Table Field Null Key Datatype


discount
de_id not null primary key int(11)
start_date not null date
end_date not null date
d_type not null text
discount not null float
p_id not null foreign key int(11)
Table Field Null Key Datatype
memberships
m_id not null primary key int(11)
m_name not null varchar(20)
amount not null int(11)
membership_date not null date
expire_date not null date
duration not null text
description not null varchar(50)

Table Field Null Key Datatype


membership_
purchase
mp_id not null primary key int(11)
start_date not null date
end_date not null date
price not null decimal(10,0)
m_id not null foreign key int(11)
u_id not null foreign key int(11)

Table Field Null Key Datatype


orders
o_id not null primary key int(11)
u_id not null foreign key int(11)
contact not null decimal(10,0)
amount not null int(11)
cou_code not null text
delivery_date not null timestamp
return_date not null date
order_date not null varchar(100)
deposite not null int(11)
return_amount not null int(11)
payment_id not null foreign_key text
status not null int(4)
delivery_id not null foreign key int(11)

Table Field Null Key Datatype


order_details
od_id not null primary key int(11)
qty not null int(11)
price not null decimal(10,0)
o_id not null foreign key int(11)
p_id not null foreign key int(11)
Table Field Null Key Datatype
products
p_id not null primary key int(11)
p_name not null varchar(200)
qty not null decimal(10,0)
price not null int(11)
deposite not null int(100)
short_description not null text
long_description not null text
status not null varchar(20)
features not null varchar(20)
u_id not null foreign key int(11)
subc_id not null foreign key int(11)

Table Field Null Key Datatype


product_images
pr_img_id not null primary key int(11)
url not null text
p_id not null foreign key int(11)

Table Field Null Key Datatype


reviews
r_id not null primary key int(11)
p_id not null foreign key int(11)
u_id not null foreign key int(11)
description not null varchar(50)
ratting not null int(11)
review_date not null varchar(100)

Table Field Null Key Datatype


sellers
seller_id not null primary key int(11)
url not null text
seller_name not null varchar(50)
email not null text
password not null text
phon_no not null decimal(10,0)
store_name not null varchar(50)
gst not null varchar(50)
date_of_joining not null timestamp
u_id not null foreign key int(11)
status not null int(2)
Table Field Null Key Datatype
seller_payment
sel_id not null primary key int(11)
u_id not null foreign key int(11)

Table Field Null Key Datatype


sizes
size_id not null primary key int(11)
size_name not null text

Table Field Null Key Datatype


subcategories
subc_id not null primary key int(11)
subc_name not null varchar(30)
c_id not null foreign key int(11)

Table Field Null Key Datatype


users
u_id not null primary key int(11)
u_name not null varchar(20)
password not null text
email not null text
address not null char(50)
city not null varchar(20)
state not null varchar(20)
contact not null decimal(10,0)
date_of_joining not null timestamp
user_type not null varchar(3)
m_id not null foreign key int(11)
terms not null int(11)
token not null varchar(100)

Table Field Null Key Datatype


wishlist
w_id not null primary key int(11)
p_id not null foreign key int(11)
u_id not null foreign key int(11)

You might also like