-
laravel new ecom
-
php artisan serve
-
php artisan make:model Admin -mcr
- For Making Admin Model and controller and migration
-
php artisan migrate
- For Creating admins table
-
php artisan make:middleware AdminAuth
- For Creating Admin Auth Middleware
-
php artisan make:model Category -mcr
- For Making Category Model and controller and migration
-
php artisan migrate --path=/database/migrations/2021_10_12_063339_create_categories_table.php -For create category table
-
php artisan make:model Coupon -mcr
- For Making Coupon Model and controller and migration
-
php artisan migrate
- For Creating Coupan table
-
php artisan make:model Size -mcr
- For Making Size Model and controller and migration
-
php artisan migrate
- For Creating Size table
-
php artisan make:model Color -mcr
- For Making Color Model and controller and migration
-
php artisan migrate
- For Creating Color table
-
php artisan make:model Brand -mcr
- For Making Brand Model and controller and migration
-
php artisan migrate
- For Creating Brand table
-
php artisan storage:link
- To create the symbolic link, Once a file has been stored and the symbolic link has been created.
-
php artisan make:model Product -mcr
- For Making Product Model and controller and migration
-
php artisan migrate
- For Creating Product table
-
composer dump-autoload
- For using helper function
-
php artisan make:migration create_product_attrs_table
- For Making product_attrs table
-
php artisan migrate
- For Creating Product_attrs table
-
php artisan make:request ProductFormRequest
- For Creating Product Request
-
php artisan make:migration create_product_images_table
- For Making product_images table
-
php artisan make:model Tax -mcr
- For Making Tax Model and controller and migration
-
php artisan migrate
- For Creating Taxs table
-
php artisan make:model Customer -mcr
- For Making Customer Model and controller and migration
-
php artisan migrate
- For Creating Customer table