├── .env.example
├── .gitattributes
├── .gitignore
├── app
├── Console
│ └── Kernel.php
├── Events
│ └── CardCharged.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ └── ResetPasswordController.php
│ │ ├── CheckoutController.php
│ │ ├── Controller.php
│ │ ├── FrontEndController.php
│ │ ├── HomeController.php
│ │ ├── ProductsController.php
│ │ └── ShoppingController.php
│ ├── Kernel.php
│ └── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── VerifyCsrfToken.php
├── Mail
│ └── PurchaseSuccessful.php
├── Product.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── User.php
├── artisan
├── bootstrap
├── app.php
├── autoload.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── cart.php
├── compile.php
├── database.php
├── filesystems.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── ModelFactory.php
├── migrations
│ ├── .gitkeep
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2017_01_19_160140_create_products_table.php
│ └── 2017_01_19_234633_create_shoppingcart_table.php
└── seeds
│ ├── .gitkeep
│ ├── DatabaseSeeder.php
│ ├── ProductsTableSeeder.php
│ └── UsersTableSeeder.php
├── gulpfile.js
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── app
│ ├── css
│ │ ├── crumina-fonts.css
│ │ ├── fonts.css
│ │ ├── grid.css
│ │ ├── jquery.mCustomScrollbar.min.css
│ │ ├── mCSB_buttons.html
│ │ ├── magnific-popup.css
│ │ ├── normalize.css
│ │ ├── primary-menu.css
│ │ ├── styles.css
│ │ └── swiper.min.css
│ ├── fonts
│ │ ├── fontawesome-webfont3295.eot
│ │ ├── fontawesome-webfont3295.svg
│ │ ├── fontawesome-webfont3295.ttf
│ │ ├── fontawesome-webfont3295.woff
│ │ ├── fontawesome-webfont3295.woff2
│ │ ├── fontawesome-webfontd41d.eot
│ │ ├── seosightbe82.svg
│ │ ├── seosightbe82.ttf
│ │ └── seosightbe82.woff
│ ├── img
│ │ ├── 404-img.png
│ │ ├── amex.png
│ │ ├── analysis.jpg
│ │ ├── avatar-b-details.png
│ │ ├── avatar-bg.png
│ │ ├── avatar.png
│ │ ├── avatar1.png
│ │ ├── avatar2.png
│ │ ├── avatar3.png
│ │ ├── avatar4.png
│ │ ├── avatar5.png
│ │ ├── avatar6.png
│ │ ├── avatar7.png
│ │ ├── avatar9.png
│ │ ├── background-element.png
│ │ ├── bg-boxed-black.jpg
│ │ ├── bg-boxed-blue.jpg
│ │ ├── bg-boxed-dark.jpg
│ │ ├── bg-boxed-light.jpg
│ │ ├── bg-boxed-primary.jpg
│ │ ├── bg-boxed-red.jpg
│ │ ├── blog-details-author.png
│ │ ├── blog-details.jpg
│ │ ├── book2.png
│ │ ├── book3.png
│ │ ├── book4.png
│ │ ├── book5.png
│ │ ├── book6.png
│ │ ├── book7.png
│ │ ├── book8.png
│ │ ├── book9.png
│ │ ├── cart-product4.png
│ │ ├── cart-product5.png
│ │ ├── cart-product6.png
│ │ ├── case1.jpg
│ │ ├── case2.jpg
│ │ ├── case3.jpg
│ │ ├── case4.jpg
│ │ ├── case5.jpg
│ │ ├── case6.jpg
│ │ ├── case7.jpg
│ │ ├── case8.jpg
│ │ ├── client-white1.png
│ │ ├── client-white2.png
│ │ ├── client-white3.png
│ │ ├── client-white4.png
│ │ ├── client-white5.png
│ │ ├── client-white6.png
│ │ ├── client1-hover.png
│ │ ├── client2-hover.png
│ │ ├── client3-hover.png
│ │ ├── client4-hover.png
│ │ ├── client5-hover.png
│ │ ├── client6-hover.png
│ │ ├── contact4.png
│ │ ├── contact5.png
│ │ ├── contact6.png
│ │ ├── contact7.png
│ │ ├── contact8.png
│ │ ├── contact9.png
│ │ ├── description-mac.png
│ │ ├── description1.jpg
│ │ ├── discover.png
│ │ ├── elements.png
│ │ ├── eye.png
│ │ ├── features1.png
│ │ ├── features2.png
│ │ ├── features3.png
│ │ ├── features4.png
│ │ ├── features5.png
│ │ ├── features6.png
│ │ ├── google-logo.png
│ │ ├── info-box1.png
│ │ ├── info-box10.png
│ │ ├── info-box11.png
│ │ ├── info-box12.png
│ │ ├── info-box13.png
│ │ ├── info-box14.png
│ │ ├── info-box15.png
│ │ ├── info-box16.png
│ │ ├── info-box17.png
│ │ ├── info-box18.png
│ │ ├── info-box19.png
│ │ ├── info-box2.png
│ │ ├── info-box20.png
│ │ ├── info-box21.png
│ │ ├── info-box22.png
│ │ ├── info-box23.png
│ │ ├── info-box24.png
│ │ ├── info-box25.png
│ │ ├── info-box26.png
│ │ ├── info-box27.png
│ │ ├── info-box28.png
│ │ ├── info-box3.png
│ │ ├── info-box4.png
│ │ ├── info-box5.png
│ │ ├── info-box6.png
│ │ ├── info-box7.png
│ │ ├── info-box8.png
│ │ ├── info-box9.png
│ │ ├── load-more-arrow.png
│ │ ├── load-more-line.png
│ │ ├── local-seo-main.jpg
│ │ ├── local-seo1.jpg
│ │ ├── local-seo2.jpg
│ │ ├── local-seo3.jpg
│ │ ├── logo-eye.png
│ │ ├── mac-book.png
│ │ ├── marketing.png
│ │ ├── mastercard.png
│ │ ├── menu-bg.png
│ │ ├── mountain1.png
│ │ ├── mountain2.png
│ │ ├── offers1.png
│ │ ├── pattern-bg-blue.jpg
│ │ ├── pattern-bg-breez.jpg
│ │ ├── pattern-bg-brown.jpg
│ │ ├── pattern-bg-gray.jpg
│ │ ├── pattern-bg-green.jpg
│ │ ├── pattern-bg-lightblue.jpg
│ │ ├── pattern-bg-lightgray.jpg
│ │ ├── pattern-bg-lightviolet.jpg
│ │ ├── pattern-bg-lime.jpg
│ │ ├── pattern-bg-olive.jpg
│ │ ├── pattern-bg-orange.jpg
│ │ ├── pattern-bg-red.jpg
│ │ ├── pattern-bg-rose.jpg
│ │ ├── pattern-bg-violet.jpg
│ │ ├── pay-pal.png
│ │ ├── photo-elements1.jpg
│ │ ├── photo-elements2.jpg
│ │ ├── photo-elements3.jpg
│ │ ├── photo-elements4.jpg
│ │ ├── photo-elements5.jpg
│ │ ├── post-author1.png
│ │ ├── post-author2.png
│ │ ├── post-author3.png
│ │ ├── post1.jpg
│ │ ├── post2.jpg
│ │ ├── post3.jpg
│ │ ├── post4.jpg
│ │ ├── ppc.png
│ │ ├── pricing-dots.png
│ │ ├── pricing1.png
│ │ ├── pricing2.png
│ │ ├── pricing3.png
│ │ ├── product-details.png
│ │ ├── product-solution.png
│ │ ├── profit.png
│ │ ├── request.png
│ │ ├── results-ver2.png
│ │ ├── reviews-avatar1.png
│ │ ├── reviews-avatar2.png
│ │ ├── reviews-avatar3.png
│ │ ├── seo-analysis.png
│ │ ├── seoscore1.png
│ │ ├── seoscore2.png
│ │ ├── seoscore3.png
│ │ ├── services1.png
│ │ ├── services2.png
│ │ ├── services3.png
│ │ ├── services4.png
│ │ ├── services5.png
│ │ ├── slider-photo1.jpg
│ │ ├── slider-photo2.jpg
│ │ ├── slider-photo3.jpg
│ │ ├── slider-photo4.jpg
│ │ ├── slider-photo5.jpg
│ │ ├── slider1.png
│ │ ├── slider2.png
│ │ ├── slider3.png
│ │ ├── slider4.png
│ │ ├── slider5.png
│ │ ├── social-photo.png
│ │ ├── social-photo2.png
│ │ ├── solutions.jpg
│ │ ├── stunning-header-photo1.jpg
│ │ ├── stunning-header-photo2.jpg
│ │ ├── stunning-header-photo3.jpg
│ │ ├── stunning-header-photo4.jpg
│ │ ├── stunning-header-photo5.jpg
│ │ ├── stunning-header-photo6.jpg
│ │ ├── subscr-gear.png
│ │ ├── subscr-mailopen.png
│ │ ├── subscr1.png
│ │ ├── teammember1.png
│ │ ├── teammember2.png
│ │ ├── teammember3.png
│ │ ├── teammember4.png
│ │ ├── testimonial-author1.jpg
│ │ ├── testimonial-author2.jpg
│ │ ├── testimonial1.png
│ │ ├── testimonial2.png
│ │ ├── time-line-thumb.png
│ │ ├── video-format.png
│ │ ├── video2.png
│ │ └── visa.png
│ ├── js
│ │ ├── ScrollMagic.min.js
│ │ ├── ajax-pagination.js
│ │ ├── animation.velocity.min.js
│ │ ├── crum-mega-menu.js
│ │ ├── donut-chart.js
│ │ ├── form-actions.js
│ │ ├── isotope.pkgd.min.js
│ │ ├── jquery-2.1.4.min.js
│ │ ├── main.js
│ │ ├── swiper.jquery.min.js
│ │ ├── theme-plugins.js
│ │ ├── time-line.js
│ │ └── velocity.min.js
│ └── svg
│ │ ├── circle-facebook.svg
│ │ ├── google.svg
│ │ ├── rss.svg
│ │ ├── twitter.svg
│ │ ├── video-control.svg
│ │ └── youtube.svg
├── css
│ └── app.css
├── favicon.ico
├── index.php
├── js
│ └── app.js
├── robots.txt
├── uploads
│ └── products
│ │ └── book.png
└── web.config
├── readme.md
├── resources
├── assets
│ ├── js
│ │ ├── app.js
│ │ ├── bootstrap.js
│ │ └── components
│ │ │ └── Example.vue
│ └── sass
│ │ ├── _variables.scss
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── auth
│ ├── login.blade.php
│ ├── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ └── register.blade.php
│ ├── cart.blade.php
│ ├── checkout.blade.php
│ ├── emails
│ └── purchased.blade.php
│ ├── errors
│ └── 503.blade.php
│ ├── home.blade.php
│ ├── index.blade.php
│ ├── layouts
│ ├── app.blade.php
│ └── front.blade.php
│ ├── products
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── index.blade.php
│ ├── single.blade.php
│ └── vendor
│ ├── .gitkeep
│ ├── notifications
│ ├── email-plain.blade.php
│ └── email.blade.php
│ └── pagination
│ ├── bootstrap-4.blade.php
│ ├── default.blade.php
│ ├── simple-bootstrap-4.blade.php
│ └── simple-default.blade.php
├── routes
├── api.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
└── tests
├── ExampleTest.php
└── TestCase.php
/.env.example:
--------------------------------------------------------------------------------
1 | APP_ENV=local
2 | APP_KEY=
3 | APP_DEBUG=true
4 | APP_LOG_LEVEL=debug
5 | APP_URL=http://localhost
6 |
7 | DB_CONNECTION=mysql
8 | DB_HOST=127.0.0.1
9 | DB_PORT=3306
10 | DB_DATABASE=homestead
11 | DB_USERNAME=homestead
12 | DB_PASSWORD=secret
13 |
14 | BROADCAST_DRIVER=log
15 | CACHE_DRIVER=file
16 | SESSION_DRIVER=file
17 | QUEUE_DRIVER=sync
18 |
19 | REDIS_HOST=127.0.0.1
20 | REDIS_PASSWORD=null
21 | REDIS_PORT=6379
22 |
23 | MAIL_DRIVER=smtp
24 | MAIL_HOST=mailtrap.io
25 | MAIL_PORT=2525
26 | MAIL_USERNAME=null
27 | MAIL_PASSWORD=null
28 | MAIL_ENCRYPTION=null
29 |
30 | PUSHER_APP_ID=
31 | PUSHER_KEY=
32 | PUSHER_SECRET=
33 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/storage
3 | /vendor
4 | /.idea
5 | Homestead.json
6 | Homestead.yaml
7 | .env
8 |
--------------------------------------------------------------------------------
/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | // ->hourly();
29 | }
30 |
31 | /**
32 | * Register the Closure based commands for the application.
33 | *
34 | * @return void
35 | */
36 | protected function commands()
37 | {
38 | require base_path('routes/console.php');
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/app/Events/CardCharged.php:
--------------------------------------------------------------------------------
1 | expectsJson()) {
60 | return response()->json(['error' => 'Unauthenticated.'], 401);
61 | }
62 |
63 | return redirect()->guest('login');
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/ForgotPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/LoginController.php:
--------------------------------------------------------------------------------
1 | middleware('guest', ['except' => 'logout']);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/RegisterController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
40 | }
41 |
42 | /**
43 | * Get a validator for an incoming registration request.
44 | *
45 | * @param array $data
46 | * @return \Illuminate\Contracts\Validation\Validator
47 | */
48 | protected function validator(array $data)
49 | {
50 | return Validator::make($data, [
51 | 'name' => 'required|max:255',
52 | 'email' => 'required|email|max:255|unique:users',
53 | 'password' => 'required|min:6|confirmed',
54 | ]);
55 | }
56 |
57 | /**
58 | * Create a new user instance after a valid registration.
59 | *
60 | * @param array $data
61 | * @return User
62 | */
63 | protected function create(array $data)
64 | {
65 | return User::create([
66 | 'name' => $data['name'],
67 | 'email' => $data['email'],
68 | 'password' => bcrypt($data['password']),
69 | ]);
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/ResetPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Http/Controllers/CheckoutController.php:
--------------------------------------------------------------------------------
1 | count() == 0)
17 | {
18 | Session::flash('info', 'Your cart is still empty. do some shopping');
19 | return redirect()->back();
20 | }
21 | return view('checkout');
22 | }
23 |
24 | public function pay()
25 | {
26 | Stripe::setApiKey("sk_test_62bQpTPhmiXDjY5bAiL5Mam8");
27 |
28 | $charge = Charge::create([
29 | 'amount' => Cart::total() * 100,
30 | 'currency' => 'usd',
31 | 'description' => 'udemy course practice selling books',
32 | 'source' => request()->stripeToken
33 | ]);
34 |
35 | Session::flash('success', 'Purchase successfull. wait for our email.');
36 |
37 | Cart::destroy();
38 |
39 | Mail::to(request()->stripeEmail)->send(new \App\Mail\PurchaseSuccessful);
40 |
41 | return redirect('/');
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | Product::paginate(3)]);
13 | }
14 |
15 | public function singleProduct($id)
16 | {
17 | return view('single', ['product' => Product::find($id)]);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/app/Http/Controllers/HomeController.php:
--------------------------------------------------------------------------------
1 | middleware('auth');
17 | }
18 |
19 | /**
20 | * Show the application dashboard.
21 | *
22 | * @return \Illuminate\Http\Response
23 | */
24 | public function index()
25 | {
26 | return view('home');
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/app/Http/Controllers/ProductsController.php:
--------------------------------------------------------------------------------
1 | middleware('auth');
15 | }
16 | /**
17 | * Display a listing of the resource.
18 | *
19 | * @return \Illuminate\Http\Response
20 | */
21 | public function index()
22 | {
23 | return view('products.index', ['products' => Product::all()]);
24 | }
25 |
26 | /**
27 | * Show the form for creating a new resource.
28 | *
29 | * @return \Illuminate\Http\Response
30 | */
31 | public function create()
32 | {
33 | return view('products.create');
34 | }
35 |
36 | /**
37 | * Store a newly created resource in storage.
38 | *
39 | * @param \Illuminate\Http\Request $request
40 | * @return \Illuminate\Http\Response
41 | */
42 | public function store(Request $request)
43 | {
44 | $this->validate($request, [
45 | 'name' => 'required',
46 | 'description' => 'required',
47 | 'price' => 'required',
48 | 'image' => 'required|image'
49 | ]);
50 |
51 | $product = new Product;
52 |
53 | $product_image = $request->image;
54 |
55 | $product_image_new_name = time() . $product_image->getClientOriginalName();
56 |
57 | $product_image->move('uploads/products', $product_image_new_name);
58 |
59 | $product->name = $request->name;
60 | $product->description = $request->description;
61 | $product->price = $request->price;
62 | $product->image = 'uploads/products/' . $product_image_new_name;
63 |
64 | $product->save();
65 |
66 | Session::flash('success', 'Product created.');
67 |
68 | return redirect()->route('products.index');
69 |
70 | }
71 |
72 | /**
73 | * Display the specified resource.
74 | *
75 | * @param int $id
76 | * @return \Illuminate\Http\Response
77 | */
78 | public function show($id)
79 | {
80 | //
81 | }
82 |
83 | /**
84 | * Show the form for editing the specified resource.
85 | *
86 | * @param int $id
87 | * @return \Illuminate\Http\Response
88 | */
89 | public function edit($id)
90 | {
91 | return view('products.edit', ['product' => Product::find($id) ]);
92 | }
93 |
94 | /**
95 | * Update the specified resource in storage.
96 | *
97 | * @param \Illuminate\Http\Request $request
98 | * @param int $id
99 | * @return \Illuminate\Http\Response
100 | */
101 | public function update(Request $request, $id)
102 | {
103 | $this->validate($request, [
104 | 'name' => 'required',
105 | 'description' => 'required',
106 | 'price' => 'required'
107 | ]);
108 |
109 | $product = Product::find($id);
110 |
111 | if($request->hasFile('image'))
112 | {
113 | $product_image = $request->image;
114 |
115 | $product_image_new_name = time() . $product_image->getClientOriginalName();
116 |
117 | $product_image->move('uploads/products', $product_image_new_name);
118 |
119 | $product->image = 'uploads/products/' . $product_image_new_name;
120 |
121 | $product->save();
122 | }
123 |
124 | $product->name = $request->name;
125 | $product->description = $request->description;
126 | $product->price = $request->price;
127 |
128 |
129 | $product->save();
130 |
131 | Session::flash('success', 'Product updated.');
132 |
133 | return redirect()->route('products.index');
134 | }
135 |
136 | /**
137 | * Remove the specified resource from storage.
138 | *
139 | * @param int $id
140 | * @return \Illuminate\Http\Response
141 | */
142 | public function destroy($id)
143 | {
144 | $product = Product::find($id);
145 |
146 | if(file_exists($product->image))
147 | {
148 | unlink($product->image);
149 | }
150 |
151 | $product->delete();
152 |
153 | Session::flash('success', 'Product deleted.');
154 |
155 | return redirect()->back();
156 | }
157 | }
158 |
--------------------------------------------------------------------------------
/app/Http/Controllers/ShoppingController.php:
--------------------------------------------------------------------------------
1 | pdt_id);
15 |
16 | $cartItem = Cart::add([
17 | 'id' => $pdt->id,
18 | 'name' => $pdt->name,
19 | 'qty' => request()->qty,
20 | 'price' => $pdt->price
21 | ]);
22 |
23 | Cart::associate($cartItem->rowId, 'App\Product');
24 | Session::flash('success', 'Product added to cart.');
25 |
26 | return redirect()->route('cart');
27 | }
28 |
29 | public function cart()
30 | {
31 | return view('cart');
32 | }
33 |
34 | public function cart_delete($id)
35 | {
36 | Cart::remove($id);
37 |
38 | Session::flash('success', 'Product removed from cart.');
39 | return redirect()->back();
40 | }
41 |
42 | public function incr($id, $qty)
43 | {
44 | Cart::update($id, $qty + 1);
45 |
46 | Session::flash('success', 'Product qunatity updated.');
47 |
48 | return redirect()->back();
49 | }
50 | public function decr($id, $qty)
51 | {
52 | Cart::update($id, $qty - 1);
53 |
54 | Session::flash('success', 'Product qunatity updated.');
55 |
56 | return redirect()->back();
57 | }
58 |
59 | public function rapid_add($id)
60 | {
61 | $pdt = Product::find($id);
62 |
63 | $cartItem = Cart::add([
64 | 'id' => $pdt->id,
65 | 'name' => $pdt->name,
66 | 'qty' => 1,
67 | 'price' => $pdt->price
68 | ]);
69 |
70 | Cart::associate($cartItem->rowId, 'App\Product');
71 |
72 | Session::flash('success', 'Product added to cart.');
73 |
74 | return redirect()->route('cart');
75 | }
76 | }
77 |
--------------------------------------------------------------------------------
/app/Http/Kernel.php:
--------------------------------------------------------------------------------
1 | [
27 | \App\Http\Middleware\EncryptCookies::class,
28 | \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
29 | \Illuminate\Session\Middleware\StartSession::class,
30 | \Illuminate\View\Middleware\ShareErrorsFromSession::class,
31 | \App\Http\Middleware\VerifyCsrfToken::class,
32 | \Illuminate\Routing\Middleware\SubstituteBindings::class,
33 | ],
34 |
35 | 'api' => [
36 | 'throttle:60,1',
37 | 'bindings',
38 | ],
39 | ];
40 |
41 | /**
42 | * The application's route middleware.
43 | *
44 | * These middleware may be assigned to groups or used individually.
45 | *
46 | * @var array
47 | */
48 | protected $routeMiddleware = [
49 | 'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
50 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
51 | 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
52 | 'can' => \Illuminate\Auth\Middleware\Authorize::class,
53 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
54 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
55 | ];
56 | }
57 |
--------------------------------------------------------------------------------
/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/Http/Middleware/VerifyCsrfToken.php:
--------------------------------------------------------------------------------
1 | view('emails.purchased');
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Product.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any authentication / authorization services.
21 | *
22 | * @return void
23 | */
24 | public function boot()
25 | {
26 | $this->registerPolicies();
27 |
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | id === (int) $userId;
24 | });
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any events for your application.
23 | *
24 | * @return void
25 | */
26 | public function boot()
27 | {
28 | parent::boot();
29 |
30 | //
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Providers/RouteServiceProvider.php:
--------------------------------------------------------------------------------
1 | mapApiRoutes();
39 |
40 | $this->mapWebRoutes();
41 |
42 | //
43 | }
44 |
45 | /**
46 | * Define the "web" routes for the application.
47 | *
48 | * These routes all receive session state, CSRF protection, etc.
49 | *
50 | * @return void
51 | */
52 | protected function mapWebRoutes()
53 | {
54 | Route::group([
55 | 'middleware' => 'web',
56 | 'namespace' => $this->namespace,
57 | ], function ($router) {
58 | require base_path('routes/web.php');
59 | });
60 | }
61 |
62 | /**
63 | * Define the "api" routes for the application.
64 | *
65 | * These routes are typically stateless.
66 | *
67 | * @return void
68 | */
69 | protected function mapApiRoutes()
70 | {
71 | Route::group([
72 | 'middleware' => 'api',
73 | 'namespace' => $this->namespace,
74 | 'prefix' => 'api',
75 | ], function ($router) {
76 | require base_path('routes/api.php');
77 | });
78 | }
79 | }
80 |
--------------------------------------------------------------------------------
/app/User.php:
--------------------------------------------------------------------------------
1 | make(Illuminate\Contracts\Console\Kernel::class);
32 |
33 | $status = $kernel->handle(
34 | $input = new Symfony\Component\Console\Input\ArgvInput,
35 | new Symfony\Component\Console\Output\ConsoleOutput
36 | );
37 |
38 | /*
39 | |--------------------------------------------------------------------------
40 | | Shutdown The Application
41 | |--------------------------------------------------------------------------
42 | |
43 | | Once Artisan has finished running. We will fire off the shutdown events
44 | | so that any final work may be done by the application before we shut
45 | | down the process. This is the last thing to happen to the request.
46 | |
47 | */
48 |
49 | $kernel->terminate($input, $status);
50 |
51 | exit($status);
52 |
--------------------------------------------------------------------------------
/bootstrap/app.php:
--------------------------------------------------------------------------------
1 | singleton(
30 | Illuminate\Contracts\Http\Kernel::class,
31 | App\Http\Kernel::class
32 | );
33 |
34 | $app->singleton(
35 | Illuminate\Contracts\Console\Kernel::class,
36 | App\Console\Kernel::class
37 | );
38 |
39 | $app->singleton(
40 | Illuminate\Contracts\Debug\ExceptionHandler::class,
41 | App\Exceptions\Handler::class
42 | );
43 |
44 | /*
45 | |--------------------------------------------------------------------------
46 | | Return The Application
47 | |--------------------------------------------------------------------------
48 | |
49 | | This script returns the application instance. The instance is given to
50 | | the calling script so we can separate the building of the instances
51 | | from the actual running of the application and sending responses.
52 | |
53 | */
54 |
55 | return $app;
56 |
--------------------------------------------------------------------------------
/bootstrap/autoload.php:
--------------------------------------------------------------------------------
1 | =5.6.4",
9 | "laravel/framework": "5.3.*",
10 | "gloudemans/shoppingcart": "^2.2",
11 | "stripe/stripe-php": "^4.4"
12 | },
13 | "require-dev": {
14 | "fzaninotto/faker": "~1.4",
15 | "mockery/mockery": "0.9.*",
16 | "phpunit/phpunit": "~5.0",
17 | "symfony/css-selector": "3.1.*",
18 | "symfony/dom-crawler": "3.1.*"
19 | },
20 | "autoload": {
21 | "classmap": [
22 | "database"
23 | ],
24 | "psr-4": {
25 | "App\\": "app/"
26 | }
27 | },
28 | "autoload-dev": {
29 | "classmap": [
30 | "tests/TestCase.php"
31 | ]
32 | },
33 | "scripts": {
34 | "post-root-package-install": [
35 | "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
36 | ],
37 | "post-create-project-cmd": [
38 | "php artisan key:generate"
39 | ],
40 | "post-install-cmd": [
41 | "Illuminate\\Foundation\\ComposerScripts::postInstall",
42 | "php artisan optimize"
43 | ],
44 | "post-update-cmd": [
45 | "Illuminate\\Foundation\\ComposerScripts::postUpdate",
46 | "php artisan optimize"
47 | ]
48 | },
49 | "config": {
50 | "preferred-install": "dist"
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/config/auth.php:
--------------------------------------------------------------------------------
1 | [
17 | 'guard' => 'web',
18 | 'passwords' => 'users',
19 | ],
20 |
21 | /*
22 | |--------------------------------------------------------------------------
23 | | Authentication Guards
24 | |--------------------------------------------------------------------------
25 | |
26 | | Next, you may define every authentication guard for your application.
27 | | Of course, a great default configuration has been defined for you
28 | | here which uses session storage and the Eloquent user provider.
29 | |
30 | | All authentication drivers have a user provider. This defines how the
31 | | users are actually retrieved out of your database or other storage
32 | | mechanisms used by this application to persist your user's data.
33 | |
34 | | Supported: "session", "token"
35 | |
36 | */
37 |
38 | 'guards' => [
39 | 'web' => [
40 | 'driver' => 'session',
41 | 'provider' => 'users',
42 | ],
43 |
44 | 'api' => [
45 | 'driver' => 'token',
46 | 'provider' => 'users',
47 | ],
48 | ],
49 |
50 | /*
51 | |--------------------------------------------------------------------------
52 | | User Providers
53 | |--------------------------------------------------------------------------
54 | |
55 | | All authentication drivers have a user provider. This defines how the
56 | | users are actually retrieved out of your database or other storage
57 | | mechanisms used by this application to persist your user's data.
58 | |
59 | | If you have multiple user tables or models you may configure multiple
60 | | sources which represent each model / table. These sources may then
61 | | be assigned to any extra authentication guards you have defined.
62 | |
63 | | Supported: "database", "eloquent"
64 | |
65 | */
66 |
67 | 'providers' => [
68 | 'users' => [
69 | 'driver' => 'eloquent',
70 | 'model' => App\User::class,
71 | ],
72 |
73 | // 'users' => [
74 | // 'driver' => 'database',
75 | // 'table' => 'users',
76 | // ],
77 | ],
78 |
79 | /*
80 | |--------------------------------------------------------------------------
81 | | Resetting Passwords
82 | |--------------------------------------------------------------------------
83 | |
84 | | You may specify multiple password reset configurations if you have more
85 | | than one user table or model in the application and you want to have
86 | | separate password reset settings based on the specific user types.
87 | |
88 | | The expire time is the number of minutes that the reset token should be
89 | | considered valid. This security feature keeps tokens short-lived so
90 | | they have less time to be guessed. You may change this as needed.
91 | |
92 | */
93 |
94 | 'passwords' => [
95 | 'users' => [
96 | 'provider' => 'users',
97 | 'table' => 'password_resets',
98 | 'expire' => 60,
99 | ],
100 | ],
101 |
102 | ];
103 |
--------------------------------------------------------------------------------
/config/broadcasting.php:
--------------------------------------------------------------------------------
1 | env('BROADCAST_DRIVER', 'null'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Broadcast Connections
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may define all of the broadcast connections that will be used
26 | | to broadcast events to other systems or over websockets. Samples of
27 | | each available type of connection are provided inside this array.
28 | |
29 | */
30 |
31 | 'connections' => [
32 |
33 | 'pusher' => [
34 | 'driver' => 'pusher',
35 | 'key' => env('PUSHER_KEY'),
36 | 'secret' => env('PUSHER_SECRET'),
37 | 'app_id' => env('PUSHER_APP_ID'),
38 | 'options' => [
39 | //
40 | ],
41 | ],
42 |
43 | 'redis' => [
44 | 'driver' => 'redis',
45 | 'connection' => 'default',
46 | ],
47 |
48 | 'log' => [
49 | 'driver' => 'log',
50 | ],
51 |
52 | 'null' => [
53 | 'driver' => 'null',
54 | ],
55 |
56 | ],
57 |
58 | ];
59 |
--------------------------------------------------------------------------------
/config/cache.php:
--------------------------------------------------------------------------------
1 | env('CACHE_DRIVER', 'file'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Cache Stores
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may define all of the cache "stores" for your application as
26 | | well as their drivers. You may even define multiple stores for the
27 | | same cache driver to group types of items stored in your caches.
28 | |
29 | */
30 |
31 | 'stores' => [
32 |
33 | 'apc' => [
34 | 'driver' => 'apc',
35 | ],
36 |
37 | 'array' => [
38 | 'driver' => 'array',
39 | ],
40 |
41 | 'database' => [
42 | 'driver' => 'database',
43 | 'table' => 'cache',
44 | 'connection' => null,
45 | ],
46 |
47 | 'file' => [
48 | 'driver' => 'file',
49 | 'path' => storage_path('framework/cache'),
50 | ],
51 |
52 | 'memcached' => [
53 | 'driver' => 'memcached',
54 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
55 | 'sasl' => [
56 | env('MEMCACHED_USERNAME'),
57 | env('MEMCACHED_PASSWORD'),
58 | ],
59 | 'options' => [
60 | // Memcached::OPT_CONNECT_TIMEOUT => 2000,
61 | ],
62 | 'servers' => [
63 | [
64 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
65 | 'port' => env('MEMCACHED_PORT', 11211),
66 | 'weight' => 100,
67 | ],
68 | ],
69 | ],
70 |
71 | 'redis' => [
72 | 'driver' => 'redis',
73 | 'connection' => 'default',
74 | ],
75 |
76 | ],
77 |
78 | /*
79 | |--------------------------------------------------------------------------
80 | | Cache Key Prefix
81 | |--------------------------------------------------------------------------
82 | |
83 | | When utilizing a RAM based store such as APC or Memcached, there might
84 | | be other applications utilizing the same cache. So, we'll specify a
85 | | value to get prefixed to all our keys so we can avoid collisions.
86 | |
87 | */
88 |
89 | 'prefix' => 'laravel',
90 |
91 | ];
92 |
--------------------------------------------------------------------------------
/config/cart.php:
--------------------------------------------------------------------------------
1 | 0,
16 |
17 | /*
18 | |--------------------------------------------------------------------------
19 | | Shoppingcart database settings
20 | |--------------------------------------------------------------------------
21 | |
22 | | Here you can set the connection that the shoppingcart should use when
23 | | storing and restoring a cart.
24 | |
25 | */
26 |
27 | 'database' => [
28 |
29 | 'connection' => null,
30 |
31 | 'table' => 'shoppingcart',
32 |
33 | ],
34 |
35 | /*
36 | |--------------------------------------------------------------------------
37 | | Destroy the cart on user logout
38 | |--------------------------------------------------------------------------
39 | |
40 | | When this option is set to 'true' the cart will automatically
41 | | destroy all cart instances when the user logs out.
42 | |
43 | */
44 |
45 | 'destroy_on_logout' => false,
46 |
47 | /*
48 | |--------------------------------------------------------------------------
49 | | Default number format
50 | |--------------------------------------------------------------------------
51 | |
52 | | This defaults will be used for the formated numbers if you don't
53 | | set them in the method call.
54 | |
55 | */
56 |
57 | 'format' => [
58 |
59 | 'decimals' => 0,
60 |
61 | 'decimal_point' => '',
62 |
63 | 'thousand_seperator' => ''
64 |
65 | ],
66 |
67 | ];
--------------------------------------------------------------------------------
/config/compile.php:
--------------------------------------------------------------------------------
1 | [
17 | //
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled File Providers
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may list service providers which define a "compiles" function
26 | | that returns additional files that should be compiled, providing an
27 | | easy way to get common files from any packages you are utilizing.
28 | |
29 | */
30 |
31 | 'providers' => [
32 | //
33 | ],
34 |
35 | ];
36 |
--------------------------------------------------------------------------------
/config/database.php:
--------------------------------------------------------------------------------
1 | PDO::FETCH_OBJ,
17 |
18 | /*
19 | |--------------------------------------------------------------------------
20 | | Default Database Connection Name
21 | |--------------------------------------------------------------------------
22 | |
23 | | Here you may specify which of the database connections below you wish
24 | | to use as your default connection for all database work. Of course
25 | | you may use many connections at once using the Database library.
26 | |
27 | */
28 |
29 | 'default' => env('DB_CONNECTION', 'mysql'),
30 |
31 | /*
32 | |--------------------------------------------------------------------------
33 | | Database Connections
34 | |--------------------------------------------------------------------------
35 | |
36 | | Here are each of the database connections setup for your application.
37 | | Of course, examples of configuring each database platform that is
38 | | supported by Laravel is shown below to make development simple.
39 | |
40 | |
41 | | All database work in Laravel is done through the PHP PDO facilities
42 | | so make sure you have the driver for your particular database of
43 | | choice installed on your machine before you begin development.
44 | |
45 | */
46 |
47 | 'connections' => [
48 |
49 | 'sqlite' => [
50 | 'driver' => 'sqlite',
51 | 'database' => env('DB_DATABASE', database_path('database.sqlite')),
52 | 'prefix' => '',
53 | ],
54 |
55 | 'mysql' => [
56 | 'driver' => 'mysql',
57 | 'host' => env('DB_HOST', 'localhost'),
58 | 'port' => env('DB_PORT', '3306'),
59 | 'database' => env('DB_DATABASE', 'forge'),
60 | 'username' => env('DB_USERNAME', 'forge'),
61 | 'password' => env('DB_PASSWORD', ''),
62 | 'charset' => 'utf8',
63 | 'collation' => 'utf8_unicode_ci',
64 | 'prefix' => '',
65 | 'strict' => true,
66 | 'engine' => null,
67 | ],
68 |
69 | 'pgsql' => [
70 | 'driver' => 'pgsql',
71 | 'host' => env('DB_HOST', 'localhost'),
72 | 'port' => env('DB_PORT', '5432'),
73 | 'database' => env('DB_DATABASE', 'forge'),
74 | 'username' => env('DB_USERNAME', 'forge'),
75 | 'password' => env('DB_PASSWORD', ''),
76 | 'charset' => 'utf8',
77 | 'prefix' => '',
78 | 'schema' => 'public',
79 | 'sslmode' => 'prefer',
80 | ],
81 |
82 | ],
83 |
84 | /*
85 | |--------------------------------------------------------------------------
86 | | Migration Repository Table
87 | |--------------------------------------------------------------------------
88 | |
89 | | This table keeps track of all the migrations that have already run for
90 | | your application. Using this information, we can determine which of
91 | | the migrations on disk haven't actually been run in the database.
92 | |
93 | */
94 |
95 | 'migrations' => 'migrations',
96 |
97 | /*
98 | |--------------------------------------------------------------------------
99 | | Redis Databases
100 | |--------------------------------------------------------------------------
101 | |
102 | | Redis is an open source, fast, and advanced key-value store that also
103 | | provides a richer set of commands than a typical key-value systems
104 | | such as APC or Memcached. Laravel makes it easy to dig right in.
105 | |
106 | */
107 |
108 | 'redis' => [
109 |
110 | 'cluster' => false,
111 |
112 | 'default' => [
113 | 'host' => env('REDIS_HOST', 'localhost'),
114 | 'password' => env('REDIS_PASSWORD', null),
115 | 'port' => env('REDIS_PORT', 6379),
116 | 'database' => 0,
117 | ],
118 |
119 | ],
120 |
121 | ];
122 |
--------------------------------------------------------------------------------
/config/filesystems.php:
--------------------------------------------------------------------------------
1 | 'local',
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Default Cloud Filesystem Disk
23 | |--------------------------------------------------------------------------
24 | |
25 | | Many applications store files both locally and in the cloud. For this
26 | | reason, you may specify a default "cloud" driver here. This driver
27 | | will be bound as the Cloud disk implementation in the container.
28 | |
29 | */
30 |
31 | 'cloud' => 's3',
32 |
33 | /*
34 | |--------------------------------------------------------------------------
35 | | Filesystem Disks
36 | |--------------------------------------------------------------------------
37 | |
38 | | Here you may configure as many filesystem "disks" as you wish, and you
39 | | may even configure multiple disks of the same driver. Defaults have
40 | | been setup for each driver as an example of the required options.
41 | |
42 | */
43 |
44 | 'disks' => [
45 |
46 | 'local' => [
47 | 'driver' => 'local',
48 | 'root' => storage_path('app'),
49 | ],
50 |
51 | 'public' => [
52 | 'driver' => 'local',
53 | 'root' => storage_path('app/public'),
54 | 'visibility' => 'public',
55 | ],
56 |
57 | 's3' => [
58 | 'driver' => 's3',
59 | 'key' => 'your-key',
60 | 'secret' => 'your-secret',
61 | 'region' => 'your-region',
62 | 'bucket' => 'your-bucket',
63 | ],
64 |
65 | ],
66 |
67 | ];
68 |
--------------------------------------------------------------------------------
/config/mail.php:
--------------------------------------------------------------------------------
1 | env('MAIL_DRIVER', 'smtp'),
20 |
21 | /*
22 | |--------------------------------------------------------------------------
23 | | SMTP Host Address
24 | |--------------------------------------------------------------------------
25 | |
26 | | Here you may provide the host address of the SMTP server used by your
27 | | applications. A default option is provided that is compatible with
28 | | the Mailgun mail service which will provide reliable deliveries.
29 | |
30 | */
31 |
32 | 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
33 |
34 | /*
35 | |--------------------------------------------------------------------------
36 | | SMTP Host Port
37 | |--------------------------------------------------------------------------
38 | |
39 | | This is the SMTP port used by your application to deliver e-mails to
40 | | users of the application. Like the host we have set this value to
41 | | stay compatible with the Mailgun e-mail application by default.
42 | |
43 | */
44 |
45 | 'port' => env('MAIL_PORT', 587),
46 |
47 | /*
48 | |--------------------------------------------------------------------------
49 | | Global "From" Address
50 | |--------------------------------------------------------------------------
51 | |
52 | | You may wish for all e-mails sent by your application to be sent from
53 | | the same address. Here, you may specify a name and address that is
54 | | used globally for all e-mails that are sent by your application.
55 | |
56 | */
57 |
58 | 'from' => [
59 | 'address' => 'hello@example.com',
60 | 'name' => 'Udemy ecommerce practice',
61 | ],
62 |
63 | /*
64 | |--------------------------------------------------------------------------
65 | | E-Mail Encryption Protocol
66 | |--------------------------------------------------------------------------
67 | |
68 | | Here you may specify the encryption protocol that should be used when
69 | | the application send e-mail messages. A sensible default using the
70 | | transport layer security protocol should provide great security.
71 | |
72 | */
73 |
74 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
75 |
76 | /*
77 | |--------------------------------------------------------------------------
78 | | SMTP Server Username
79 | |--------------------------------------------------------------------------
80 | |
81 | | If your SMTP server requires a username for authentication, you should
82 | | set it here. This will get used to authenticate with your server on
83 | | connection. You may also set the "password" value below this one.
84 | |
85 | */
86 |
87 | 'username' => env('MAIL_USERNAME'),
88 |
89 | /*
90 | |--------------------------------------------------------------------------
91 | | SMTP Server Password
92 | |--------------------------------------------------------------------------
93 | |
94 | | Here you may set the password required by your SMTP server to send out
95 | | messages from your application. This will be given to the server on
96 | | connection so that the application will be able to send messages.
97 | |
98 | */
99 |
100 | 'password' => env('MAIL_PASSWORD'),
101 |
102 | /*
103 | |--------------------------------------------------------------------------
104 | | Sendmail System Path
105 | |--------------------------------------------------------------------------
106 | |
107 | | When using the "sendmail" driver to send e-mails, we will need to know
108 | | the path to where Sendmail lives on this server. A default path has
109 | | been provided here, which will work well on most of your systems.
110 | |
111 | */
112 |
113 | 'sendmail' => '/usr/sbin/sendmail -bs',
114 |
115 | ];
116 |
--------------------------------------------------------------------------------
/config/queue.php:
--------------------------------------------------------------------------------
1 | env('QUEUE_DRIVER', 'sync'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Queue Connections
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may configure the connection information for each server that
26 | | is used by your application. A default configuration has been added
27 | | for each back-end shipped with Laravel. You are free to add more.
28 | |
29 | */
30 |
31 | 'connections' => [
32 |
33 | 'sync' => [
34 | 'driver' => 'sync',
35 | ],
36 |
37 | 'database' => [
38 | 'driver' => 'database',
39 | 'table' => 'jobs',
40 | 'queue' => 'default',
41 | 'retry_after' => 90,
42 | ],
43 |
44 | 'beanstalkd' => [
45 | 'driver' => 'beanstalkd',
46 | 'host' => 'localhost',
47 | 'queue' => 'default',
48 | 'retry_after' => 90,
49 | ],
50 |
51 | 'sqs' => [
52 | 'driver' => 'sqs',
53 | 'key' => 'your-public-key',
54 | 'secret' => 'your-secret-key',
55 | 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
56 | 'queue' => 'your-queue-name',
57 | 'region' => 'us-east-1',
58 | ],
59 |
60 | 'redis' => [
61 | 'driver' => 'redis',
62 | 'connection' => 'default',
63 | 'queue' => 'default',
64 | 'retry_after' => 90,
65 | ],
66 |
67 | ],
68 |
69 | /*
70 | |--------------------------------------------------------------------------
71 | | Failed Queue Jobs
72 | |--------------------------------------------------------------------------
73 | |
74 | | These options configure the behavior of failed queue job logging so you
75 | | can control which database and table are used to store the jobs that
76 | | have failed. You may change them to any database / table you wish.
77 | |
78 | */
79 |
80 | 'failed' => [
81 | 'database' => env('DB_CONNECTION', 'mysql'),
82 | 'table' => 'failed_jobs',
83 | ],
84 |
85 | ];
86 |
--------------------------------------------------------------------------------
/config/services.php:
--------------------------------------------------------------------------------
1 | [
18 | 'domain' => env('MAILGUN_DOMAIN'),
19 | 'secret' => env('MAILGUN_SECRET'),
20 | ],
21 |
22 | 'ses' => [
23 | 'key' => env('SES_KEY'),
24 | 'secret' => env('SES_SECRET'),
25 | 'region' => 'us-east-1',
26 | ],
27 |
28 | 'sparkpost' => [
29 | 'secret' => env('SPARKPOST_SECRET'),
30 | ],
31 |
32 | 'stripe' => [
33 | 'model' => App\User::class,
34 | 'key' => env('STRIPE_KEY'),
35 | 'secret' => env('STRIPE_SECRET'),
36 | ],
37 |
38 | ];
39 |
--------------------------------------------------------------------------------
/config/view.php:
--------------------------------------------------------------------------------
1 | [
17 | realpath(base_path('resources/views')),
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled View Path
23 | |--------------------------------------------------------------------------
24 | |
25 | | This option determines where all the compiled Blade templates will be
26 | | stored for your application. Typically, this is within the storage
27 | | directory. However, as usual, you are free to change this value.
28 | |
29 | */
30 |
31 | 'compiled' => realpath(storage_path('framework/views')),
32 |
33 | ];
34 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/factories/ModelFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
15 | static $password;
16 |
17 | return [
18 | 'name' => $faker->name,
19 | 'email' => $faker->unique()->safeEmail,
20 | 'password' => $password ?: $password = bcrypt('secret'),
21 | 'remember_token' => str_random(10),
22 | ];
23 | });
24 |
25 | $factory->define(App\Product::class, function (Faker\Generator $faker) {
26 |
27 | return [
28 | 'name' => $faker->sentence(3),
29 | 'image' => 'uploads/products/book.png',
30 | 'description' => $faker->paragraph(4),
31 | 'price' => $faker->numberBetween(100, 10000)
32 | ];
33 | });
34 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('email')->unique();
20 | $table->string('password');
21 | $table->rememberToken();
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::drop('users');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token')->index();
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/database/migrations/2017_01_19_160140_create_products_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('image');
20 | $table->bigInteger('price');
21 | $table->text('description');
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('products');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2017_01_19_234633_create_shoppingcart_table.php:
--------------------------------------------------------------------------------
1 | string('identifier');
16 | $table->string('instance');
17 | $table->longText('content');
18 | $table->nullableTimestamps();
19 |
20 | $table->primary(['identifier', 'instance']);
21 | });
22 | }
23 | /**
24 | * Reverse the migrations.
25 | */
26 | public function down()
27 | {
28 | Schema::drop('shoppingcart');
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | $this->call(ProductsTableSeeder::class);
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/database/seeds/ProductsTableSeeder.php:
--------------------------------------------------------------------------------
1 | create();
17 |
18 |
19 |
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/database/seeds/UsersTableSeeder.php:
--------------------------------------------------------------------------------
1 | 'admin',
16 | 'email' => 'admin@admin.com',
17 | 'password' => bcrypt('password')
18 | ]);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | const elixir = require('laravel-elixir');
2 |
3 | require('laravel-elixir-vue-2');
4 |
5 | /*
6 | |--------------------------------------------------------------------------
7 | | Elixir Asset Management
8 | |--------------------------------------------------------------------------
9 | |
10 | | Elixir provides a clean, fluent API for defining some basic Gulp tasks
11 | | for your Laravel application. By default, we are compiling the Sass
12 | | file for our application, as well as publishing vendor resources.
13 | |
14 | */
15 |
16 | elixir(mix => {
17 | mix.sass('app.scss')
18 | .webpack('app.js');
19 | });
20 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "prod": "gulp --production",
5 | "dev": "gulp watch"
6 | },
7 | "devDependencies": {
8 | "bootstrap-sass": "^3.3.7",
9 | "gulp": "^3.9.1",
10 | "jquery": "^3.1.0",
11 | "laravel-elixir": "^6.0.0-9",
12 | "laravel-elixir-vue-2": "^0.2.0",
13 | "laravel-elixir-webpack-official": "^1.0.2",
14 | "lodash": "^4.16.2",
15 | "vue": "^2.0.1",
16 | "vue-resource": "^1.0.3"
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 | ./tests
14 |
15 |
16 |
17 |
18 | ./app
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | Options -MultiViews
4 |
5 |
6 | RewriteEngine On
7 |
8 | # Redirect Trailing Slashes If Not A Folder...
9 | RewriteCond %{REQUEST_FILENAME} !-d
10 | RewriteRule ^(.*)/$ /$1 [L,R=301]
11 |
12 | # Handle Front Controller...
13 | RewriteCond %{REQUEST_FILENAME} !-d
14 | RewriteCond %{REQUEST_FILENAME} !-f
15 | RewriteRule ^ index.php [L]
16 |
17 | # Handle Authorization Header
18 | RewriteCond %{HTTP:Authorization} .
19 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
20 |
21 |
--------------------------------------------------------------------------------
/public/app/css/crumina-fonts.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'seosight';
3 | src:
4 | url('../fonts/seosightbe82.ttf?8em6qn') format('truetype'),
5 | url('../fonts/seosightbe82.woff?8em6qn') format('woff'),
6 | url('../fonts/seosightbe82.svg?8em6qn#seosight') format('svg');
7 | font-weight: normal;
8 | font-style: normal;
9 | }
10 |
11 | [class^="seoicon-"], [class*=" seoicon-"] {
12 | /* use !important to prevent issues with browser extensions that change fonts */
13 | font-family: 'seosight' !important;
14 | speak: none;
15 | font-style: normal;
16 | font-weight: normal;
17 | font-variant: normal;
18 | text-transform: none;
19 | line-height: 1;
20 |
21 | /* Better Font Rendering =========== */
22 | -webkit-font-smoothing: antialiased;
23 | -moz-osx-font-smoothing: grayscale;
24 | }
25 |
26 | .seoicon-social-instagram:before {
27 | content: "\e91c";
28 | }
29 | .seoicon-social-linkedin:before {
30 | content: "\e921";
31 | }
32 | .seoicon-quotes:before {
33 | content: "\e904";
34 | }
35 | .seoicon-loupe-0:before {
36 | content: "\e900";
37 | }
38 | .seoicon-arrow-back:before {
39 | content: "\e901";
40 | }
41 | .seoicon-arrow-to-bottom:before {
42 | content: "\e902";
43 | }
44 | .seoicon-hit-target:before {
45 | content: "\e903";
46 | }
47 | .seoicon-business-cash:before {
48 | content: "\e905";
49 | }
50 | .seoicon-business:before {
51 | content: "\e906";
52 | }
53 | .seoicon-button:before {
54 | content: "\e907";
55 | }
56 | .seoicon-check:before {
57 | content: "\e908";
58 | }
59 | .seoicon-check-bold:before {
60 | content: "\e909";
61 | }
62 | .seoicon-clip:before {
63 | content: "\e90a";
64 | }
65 | .seoicon-clock:before {
66 | content: "\e90b";
67 | }
68 | .seoicon-coins:before {
69 | content: "\e90c";
70 | }
71 | .seoicon-commerce:before {
72 | content: "\e90d";
73 | }
74 | .seoicon-tags:before {
75 | content: "\e90e";
76 | }
77 | .seoicon-chat-comment:before {
78 | content: "\e90f";
79 | }
80 | .seoicon-cross:before {
81 | content: "\e910";
82 | }
83 | .seoicon-delete-bold:before {
84 | content: "\e911";
85 | }
86 | .seoicon-delete:before {
87 | content: "\e912";
88 | }
89 | .seoicon-draw:before {
90 | content: "\e913";
91 | }
92 | .seoicon-exit-door:before {
93 | content: "\e914";
94 | }
95 | .seoicon-facebook:before {
96 | content: "\e915";
97 | }
98 | .seoicon-google:before {
99 | content: "\e916";
100 | }
101 | .seoicon-help:before {
102 | content: "\e917";
103 | }
104 | .seoicon-graphic-search:before {
105 | content: "\e918";
106 | }
107 | .seoicon-hand-thumb:before {
108 | content: "\e919";
109 | }
110 | .seoicon-mail-send:before {
111 | content: "\e91a";
112 | }
113 | .seoicon-interface:before {
114 | content: "\e91b";
115 | }
116 | .seoicon-left-large-arrow:before {
117 | content: "\e91d";
118 | }
119 | .seoicon-lightbulb-on:before {
120 | content: "\e91e";
121 | }
122 | .seoicon-line-graph:before {
123 | content: "\e91f";
124 | }
125 | .seoicon-loupe:before {
126 | content: "\e920";
127 | }
128 | .seoicon-loupe-2:before {
129 | content: "\e922";
130 | }
131 | .seoicon-loupe-3:before {
132 | content: "\e923";
133 | }
134 | .seoicon-email:before {
135 | content: "\e924";
136 | }
137 | .seoicon-menu-dots-bold:before {
138 | content: "\e925";
139 | }
140 | .seoicon-menu-dots:before {
141 | content: "\e928";
142 | }
143 | .seoicon-musical:before {
144 | content: "\e929";
145 | }
146 | .seoicon-people:before {
147 | content: "\e92a";
148 | }
149 | .seoicon-basket:before {
150 | content: "\e92b";
151 | }
152 | .seoicon-help-action:before {
153 | content: "\e92c";
154 | }
155 | .seoicon-pie-circular-graphic-with-bars-in-the-center-part-thin-symbol-outline-inside-a-circle:before {
156 | content: "\e92d";
157 | }
158 | .seoicon-pie-graph:before {
159 | content: "\e92e";
160 | }
161 | .seoicon-pie-graph-split:before {
162 | content: "\e92f";
163 | }
164 | .seoicon-pin-map:before {
165 | content: "\e930";
166 | }
167 | .seoicon-pinterest:before {
168 | content: "\e931";
169 | }
170 | .seoicon-play-button-arrowhead:before {
171 | content: "\e932";
172 | }
173 | .seoicon-play:before {
174 | content: "\e933";
175 | }
176 | .seoicon-right-large-arrow:before {
177 | content: "\e934";
178 | }
179 | .seoicon-right-arrow:before {
180 | content: "\e936";
181 | }
182 | .seoicon-rss:before {
183 | content: "\e937";
184 | }
185 | .seoicon-search:before {
186 | content: "\e938";
187 | }
188 | .seoicon-search-large:before {
189 | content: "\e939";
190 | }
191 | .seoicon-search-bold:before {
192 | content: "\e93a";
193 | }
194 | .seoicon-search-outline:before {
195 | content: "\e93b";
196 | }
197 | .seoicon-seo-landing-pages-symbol-inside-a-circle:before {
198 | content: "\e93c";
199 | }
200 | .seoicon-seo-search-symbol:before {
201 | content: "\e93d";
202 | }
203 | .seoicon-settings-symbol-with-up-arrow-in-a-circle:before {
204 | content: "\e93e";
205 | }
206 | .seoicon-shape-heart:before {
207 | content: "\e93f";
208 | }
209 | .seoicon-shapes-play:before {
210 | content: "\e940";
211 | }
212 | .seoicon-shape-heart-bold:before {
213 | content: "\e941";
214 | }
215 | .seoicon-shapes:before {
216 | content: "\e942";
217 | }
218 | .seoicon-zoom:before {
219 | content: "\e944";
220 | }
221 | .seoicon-social-links:before {
222 | content: "\e945";
223 | }
224 | .seoicon-social-pinterest:before {
225 | content: "\e946";
226 | }
227 | .seoicon-social-twitter:before {
228 | content: "\e947";
229 | }
230 | .seoicon-social-google-plus:before {
231 | content: "\e948";
232 | }
233 | .seoicon-social-facebook:before {
234 | content: "\e949";
235 | }
236 | .seoicon-stack:before {
237 | content: "\e94a";
238 | }
239 | .seoicon-strategy:before {
240 | content: "\e94b";
241 | }
242 | .seoicon-Target-Audience:before {
243 | content: "\e94c";
244 | }
245 | .seoicon-target-search:before {
246 | content: "\e94d";
247 | }
248 | .seoicon-text-paper:before {
249 | content: "\e94e";
250 | }
251 | .seoicon-time-is-running:before {
252 | content: "\e94f";
253 | }
254 | .seoicon-link:before {
255 | content: "\e950";
256 | }
257 | .seoicon-link-bold:before {
258 | content: "\e951";
259 | }
260 | .seoicon-pin-it:before {
261 | content: "\e952";
262 | }
263 | .seoicon-twitter:before {
264 | content: "\e953";
265 | }
266 | .seoicon-wireless-internet-connection-symbol:before {
267 | content: "\e954";
268 | }
269 | .seoicon-worm-outline-inside-a-circle:before {
270 | content: "\e955";
271 | }
272 | .seoicon-youtube:before {
273 | content: "\e956";
274 | }
--------------------------------------------------------------------------------
/public/app/css/mCSB_buttons.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | 404 Not Found
4 |
5 | Not Found
6 | The requested URL /html-seosight/css/mCSB_buttons.png was not found on this server.
7 |
8 | Apache/2.2.27 (CentOS) Server at theme.crumina.net Port 80
9 |
10 |
--------------------------------------------------------------------------------
/public/app/fonts/fontawesome-webfont3295.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/fontawesome-webfont3295.eot
--------------------------------------------------------------------------------
/public/app/fonts/fontawesome-webfont3295.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/fontawesome-webfont3295.ttf
--------------------------------------------------------------------------------
/public/app/fonts/fontawesome-webfont3295.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/fontawesome-webfont3295.woff
--------------------------------------------------------------------------------
/public/app/fonts/fontawesome-webfont3295.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/fontawesome-webfont3295.woff2
--------------------------------------------------------------------------------
/public/app/fonts/fontawesome-webfontd41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/fontawesome-webfontd41d.eot
--------------------------------------------------------------------------------
/public/app/fonts/seosightbe82.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/seosightbe82.ttf
--------------------------------------------------------------------------------
/public/app/fonts/seosightbe82.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/fonts/seosightbe82.woff
--------------------------------------------------------------------------------
/public/app/img/404-img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/404-img.png
--------------------------------------------------------------------------------
/public/app/img/amex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/amex.png
--------------------------------------------------------------------------------
/public/app/img/analysis.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/analysis.jpg
--------------------------------------------------------------------------------
/public/app/img/avatar-b-details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar-b-details.png
--------------------------------------------------------------------------------
/public/app/img/avatar-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar-bg.png
--------------------------------------------------------------------------------
/public/app/img/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar.png
--------------------------------------------------------------------------------
/public/app/img/avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar1.png
--------------------------------------------------------------------------------
/public/app/img/avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar2.png
--------------------------------------------------------------------------------
/public/app/img/avatar3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar3.png
--------------------------------------------------------------------------------
/public/app/img/avatar4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar4.png
--------------------------------------------------------------------------------
/public/app/img/avatar5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar5.png
--------------------------------------------------------------------------------
/public/app/img/avatar6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar6.png
--------------------------------------------------------------------------------
/public/app/img/avatar7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar7.png
--------------------------------------------------------------------------------
/public/app/img/avatar9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/avatar9.png
--------------------------------------------------------------------------------
/public/app/img/background-element.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/background-element.png
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-black.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-black.jpg
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-blue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-blue.jpg
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-dark.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-dark.jpg
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-light.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-light.jpg
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-primary.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-primary.jpg
--------------------------------------------------------------------------------
/public/app/img/bg-boxed-red.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/bg-boxed-red.jpg
--------------------------------------------------------------------------------
/public/app/img/blog-details-author.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/blog-details-author.png
--------------------------------------------------------------------------------
/public/app/img/blog-details.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/blog-details.jpg
--------------------------------------------------------------------------------
/public/app/img/book2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book2.png
--------------------------------------------------------------------------------
/public/app/img/book3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book3.png
--------------------------------------------------------------------------------
/public/app/img/book4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book4.png
--------------------------------------------------------------------------------
/public/app/img/book5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book5.png
--------------------------------------------------------------------------------
/public/app/img/book6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book6.png
--------------------------------------------------------------------------------
/public/app/img/book7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book7.png
--------------------------------------------------------------------------------
/public/app/img/book8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book8.png
--------------------------------------------------------------------------------
/public/app/img/book9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/book9.png
--------------------------------------------------------------------------------
/public/app/img/cart-product4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/cart-product4.png
--------------------------------------------------------------------------------
/public/app/img/cart-product5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/cart-product5.png
--------------------------------------------------------------------------------
/public/app/img/cart-product6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/cart-product6.png
--------------------------------------------------------------------------------
/public/app/img/case1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case1.jpg
--------------------------------------------------------------------------------
/public/app/img/case2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case2.jpg
--------------------------------------------------------------------------------
/public/app/img/case3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case3.jpg
--------------------------------------------------------------------------------
/public/app/img/case4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case4.jpg
--------------------------------------------------------------------------------
/public/app/img/case5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case5.jpg
--------------------------------------------------------------------------------
/public/app/img/case6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case6.jpg
--------------------------------------------------------------------------------
/public/app/img/case7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case7.jpg
--------------------------------------------------------------------------------
/public/app/img/case8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/case8.jpg
--------------------------------------------------------------------------------
/public/app/img/client-white1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white1.png
--------------------------------------------------------------------------------
/public/app/img/client-white2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white2.png
--------------------------------------------------------------------------------
/public/app/img/client-white3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white3.png
--------------------------------------------------------------------------------
/public/app/img/client-white4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white4.png
--------------------------------------------------------------------------------
/public/app/img/client-white5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white5.png
--------------------------------------------------------------------------------
/public/app/img/client-white6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client-white6.png
--------------------------------------------------------------------------------
/public/app/img/client1-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client1-hover.png
--------------------------------------------------------------------------------
/public/app/img/client2-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client2-hover.png
--------------------------------------------------------------------------------
/public/app/img/client3-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client3-hover.png
--------------------------------------------------------------------------------
/public/app/img/client4-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client4-hover.png
--------------------------------------------------------------------------------
/public/app/img/client5-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client5-hover.png
--------------------------------------------------------------------------------
/public/app/img/client6-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/client6-hover.png
--------------------------------------------------------------------------------
/public/app/img/contact4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact4.png
--------------------------------------------------------------------------------
/public/app/img/contact5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact5.png
--------------------------------------------------------------------------------
/public/app/img/contact6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact6.png
--------------------------------------------------------------------------------
/public/app/img/contact7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact7.png
--------------------------------------------------------------------------------
/public/app/img/contact8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact8.png
--------------------------------------------------------------------------------
/public/app/img/contact9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/contact9.png
--------------------------------------------------------------------------------
/public/app/img/description-mac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/description-mac.png
--------------------------------------------------------------------------------
/public/app/img/description1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/description1.jpg
--------------------------------------------------------------------------------
/public/app/img/discover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/discover.png
--------------------------------------------------------------------------------
/public/app/img/elements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/elements.png
--------------------------------------------------------------------------------
/public/app/img/eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/eye.png
--------------------------------------------------------------------------------
/public/app/img/features1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features1.png
--------------------------------------------------------------------------------
/public/app/img/features2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features2.png
--------------------------------------------------------------------------------
/public/app/img/features3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features3.png
--------------------------------------------------------------------------------
/public/app/img/features4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features4.png
--------------------------------------------------------------------------------
/public/app/img/features5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features5.png
--------------------------------------------------------------------------------
/public/app/img/features6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/features6.png
--------------------------------------------------------------------------------
/public/app/img/google-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/google-logo.png
--------------------------------------------------------------------------------
/public/app/img/info-box1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box1.png
--------------------------------------------------------------------------------
/public/app/img/info-box10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box10.png
--------------------------------------------------------------------------------
/public/app/img/info-box11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box11.png
--------------------------------------------------------------------------------
/public/app/img/info-box12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box12.png
--------------------------------------------------------------------------------
/public/app/img/info-box13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box13.png
--------------------------------------------------------------------------------
/public/app/img/info-box14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box14.png
--------------------------------------------------------------------------------
/public/app/img/info-box15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box15.png
--------------------------------------------------------------------------------
/public/app/img/info-box16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box16.png
--------------------------------------------------------------------------------
/public/app/img/info-box17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box17.png
--------------------------------------------------------------------------------
/public/app/img/info-box18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box18.png
--------------------------------------------------------------------------------
/public/app/img/info-box19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box19.png
--------------------------------------------------------------------------------
/public/app/img/info-box2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box2.png
--------------------------------------------------------------------------------
/public/app/img/info-box20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box20.png
--------------------------------------------------------------------------------
/public/app/img/info-box21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box21.png
--------------------------------------------------------------------------------
/public/app/img/info-box22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box22.png
--------------------------------------------------------------------------------
/public/app/img/info-box23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box23.png
--------------------------------------------------------------------------------
/public/app/img/info-box24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box24.png
--------------------------------------------------------------------------------
/public/app/img/info-box25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box25.png
--------------------------------------------------------------------------------
/public/app/img/info-box26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box26.png
--------------------------------------------------------------------------------
/public/app/img/info-box27.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box27.png
--------------------------------------------------------------------------------
/public/app/img/info-box28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box28.png
--------------------------------------------------------------------------------
/public/app/img/info-box3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box3.png
--------------------------------------------------------------------------------
/public/app/img/info-box4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box4.png
--------------------------------------------------------------------------------
/public/app/img/info-box5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box5.png
--------------------------------------------------------------------------------
/public/app/img/info-box6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box6.png
--------------------------------------------------------------------------------
/public/app/img/info-box7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box7.png
--------------------------------------------------------------------------------
/public/app/img/info-box8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box8.png
--------------------------------------------------------------------------------
/public/app/img/info-box9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/info-box9.png
--------------------------------------------------------------------------------
/public/app/img/load-more-arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/load-more-arrow.png
--------------------------------------------------------------------------------
/public/app/img/load-more-line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/load-more-line.png
--------------------------------------------------------------------------------
/public/app/img/local-seo-main.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/local-seo-main.jpg
--------------------------------------------------------------------------------
/public/app/img/local-seo1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/local-seo1.jpg
--------------------------------------------------------------------------------
/public/app/img/local-seo2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/local-seo2.jpg
--------------------------------------------------------------------------------
/public/app/img/local-seo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/local-seo3.jpg
--------------------------------------------------------------------------------
/public/app/img/logo-eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/logo-eye.png
--------------------------------------------------------------------------------
/public/app/img/mac-book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/mac-book.png
--------------------------------------------------------------------------------
/public/app/img/marketing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/marketing.png
--------------------------------------------------------------------------------
/public/app/img/mastercard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/mastercard.png
--------------------------------------------------------------------------------
/public/app/img/menu-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/menu-bg.png
--------------------------------------------------------------------------------
/public/app/img/mountain1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/mountain1.png
--------------------------------------------------------------------------------
/public/app/img/mountain2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/mountain2.png
--------------------------------------------------------------------------------
/public/app/img/offers1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/offers1.png
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-blue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-blue.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-breez.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-breez.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-brown.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-brown.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-gray.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-gray.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-green.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-green.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-lightblue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-lightblue.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-lightgray.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-lightgray.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-lightviolet.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-lightviolet.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-lime.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-lime.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-olive.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-olive.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-orange.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-orange.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-red.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-red.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-rose.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-rose.jpg
--------------------------------------------------------------------------------
/public/app/img/pattern-bg-violet.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pattern-bg-violet.jpg
--------------------------------------------------------------------------------
/public/app/img/pay-pal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pay-pal.png
--------------------------------------------------------------------------------
/public/app/img/photo-elements1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/photo-elements1.jpg
--------------------------------------------------------------------------------
/public/app/img/photo-elements2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/photo-elements2.jpg
--------------------------------------------------------------------------------
/public/app/img/photo-elements3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/photo-elements3.jpg
--------------------------------------------------------------------------------
/public/app/img/photo-elements4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/photo-elements4.jpg
--------------------------------------------------------------------------------
/public/app/img/photo-elements5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/photo-elements5.jpg
--------------------------------------------------------------------------------
/public/app/img/post-author1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post-author1.png
--------------------------------------------------------------------------------
/public/app/img/post-author2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post-author2.png
--------------------------------------------------------------------------------
/public/app/img/post-author3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post-author3.png
--------------------------------------------------------------------------------
/public/app/img/post1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post1.jpg
--------------------------------------------------------------------------------
/public/app/img/post2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post2.jpg
--------------------------------------------------------------------------------
/public/app/img/post3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post3.jpg
--------------------------------------------------------------------------------
/public/app/img/post4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/post4.jpg
--------------------------------------------------------------------------------
/public/app/img/ppc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/ppc.png
--------------------------------------------------------------------------------
/public/app/img/pricing-dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pricing-dots.png
--------------------------------------------------------------------------------
/public/app/img/pricing1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pricing1.png
--------------------------------------------------------------------------------
/public/app/img/pricing2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pricing2.png
--------------------------------------------------------------------------------
/public/app/img/pricing3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/pricing3.png
--------------------------------------------------------------------------------
/public/app/img/product-details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/product-details.png
--------------------------------------------------------------------------------
/public/app/img/product-solution.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/product-solution.png
--------------------------------------------------------------------------------
/public/app/img/profit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/profit.png
--------------------------------------------------------------------------------
/public/app/img/request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/request.png
--------------------------------------------------------------------------------
/public/app/img/results-ver2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/results-ver2.png
--------------------------------------------------------------------------------
/public/app/img/reviews-avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/reviews-avatar1.png
--------------------------------------------------------------------------------
/public/app/img/reviews-avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/reviews-avatar2.png
--------------------------------------------------------------------------------
/public/app/img/reviews-avatar3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/reviews-avatar3.png
--------------------------------------------------------------------------------
/public/app/img/seo-analysis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/seo-analysis.png
--------------------------------------------------------------------------------
/public/app/img/seoscore1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/seoscore1.png
--------------------------------------------------------------------------------
/public/app/img/seoscore2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/seoscore2.png
--------------------------------------------------------------------------------
/public/app/img/seoscore3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/seoscore3.png
--------------------------------------------------------------------------------
/public/app/img/services1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/services1.png
--------------------------------------------------------------------------------
/public/app/img/services2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/services2.png
--------------------------------------------------------------------------------
/public/app/img/services3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/services3.png
--------------------------------------------------------------------------------
/public/app/img/services4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/services4.png
--------------------------------------------------------------------------------
/public/app/img/services5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/services5.png
--------------------------------------------------------------------------------
/public/app/img/slider-photo1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider-photo1.jpg
--------------------------------------------------------------------------------
/public/app/img/slider-photo2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider-photo2.jpg
--------------------------------------------------------------------------------
/public/app/img/slider-photo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider-photo3.jpg
--------------------------------------------------------------------------------
/public/app/img/slider-photo4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider-photo4.jpg
--------------------------------------------------------------------------------
/public/app/img/slider-photo5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider-photo5.jpg
--------------------------------------------------------------------------------
/public/app/img/slider1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider1.png
--------------------------------------------------------------------------------
/public/app/img/slider2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider2.png
--------------------------------------------------------------------------------
/public/app/img/slider3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider3.png
--------------------------------------------------------------------------------
/public/app/img/slider4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider4.png
--------------------------------------------------------------------------------
/public/app/img/slider5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/slider5.png
--------------------------------------------------------------------------------
/public/app/img/social-photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/social-photo.png
--------------------------------------------------------------------------------
/public/app/img/social-photo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/social-photo2.png
--------------------------------------------------------------------------------
/public/app/img/solutions.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/solutions.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo1.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo2.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo3.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo4.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo5.jpg
--------------------------------------------------------------------------------
/public/app/img/stunning-header-photo6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/stunning-header-photo6.jpg
--------------------------------------------------------------------------------
/public/app/img/subscr-gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/subscr-gear.png
--------------------------------------------------------------------------------
/public/app/img/subscr-mailopen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/subscr-mailopen.png
--------------------------------------------------------------------------------
/public/app/img/subscr1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/subscr1.png
--------------------------------------------------------------------------------
/public/app/img/teammember1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/teammember1.png
--------------------------------------------------------------------------------
/public/app/img/teammember2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/teammember2.png
--------------------------------------------------------------------------------
/public/app/img/teammember3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/teammember3.png
--------------------------------------------------------------------------------
/public/app/img/teammember4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/teammember4.png
--------------------------------------------------------------------------------
/public/app/img/testimonial-author1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/testimonial-author1.jpg
--------------------------------------------------------------------------------
/public/app/img/testimonial-author2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/testimonial-author2.jpg
--------------------------------------------------------------------------------
/public/app/img/testimonial1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/testimonial1.png
--------------------------------------------------------------------------------
/public/app/img/testimonial2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/testimonial2.png
--------------------------------------------------------------------------------
/public/app/img/time-line-thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/time-line-thumb.png
--------------------------------------------------------------------------------
/public/app/img/video-format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/video-format.png
--------------------------------------------------------------------------------
/public/app/img/video2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/video2.png
--------------------------------------------------------------------------------
/public/app/img/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/app/img/visa.png
--------------------------------------------------------------------------------
/public/app/js/ajax-pagination.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function () {
2 |
3 | var $button = $('#load-more-button');
4 |
5 | var page_num = 1;
6 | var max_pages = 3;
7 | var next_link = $button.data('load-link');
8 |
9 | var loaded_text = 'That\'s all';
10 |
11 | var containerID = $button.data('container');
12 |
13 | var $container = $('#' + containerID );
14 | var container_has_isotope = false;
15 |
16 |
17 | if (page_num > max_pages) {
18 | $button.addClass('last-page').children('span').text(loaded_text);
19 | }
20 |
21 | $button.on('click', function () {
22 |
23 | if (page_num <= max_pages && !$(this).hasClass('loading') && !$(this).hasClass('last-page')) {
24 |
25 | $.ajax({
26 | type: 'GET',
27 | url: next_link,
28 | dataType: 'html',
29 | beforeSend: function () {
30 | $button.addClass('loading');
31 | },
32 | complete: function (XMLHttpRequest) {
33 | $button.removeClass('loading');
34 | if (XMLHttpRequest.status == 200 && XMLHttpRequest.responseText != '') {
35 |
36 | page_num++;
37 |
38 | if (page_num > max_pages) {
39 | $button.addClass('last-page').children('.load-more-text').text(loaded_text);
40 | }
41 |
42 | if ($(XMLHttpRequest.responseText).length > 0) {
43 | container_has_isotope = (typeof($container.isotope) === 'function');
44 | $(XMLHttpRequest.responseText).children().each(function () {
45 | var elem = $(this);
46 | if (!container_has_isotope) {
47 | elem.css('opacity',0);
48 | $container.append(elem);
49 | elem.addClass('animate');
50 | } else {
51 | $container.append( elem )
52 | .isotope( 'appended', elem )
53 | .isotope('layout');
54 | $container.imagesLoaded(function () {
55 | $container.isotope('layout');
56 | });
57 | }
58 |
59 | });
60 | }
61 | }
62 | }
63 | });
64 | }
65 | return false;
66 | });
67 | });
68 |
--------------------------------------------------------------------------------
/public/app/js/animation.velocity.min.js:
--------------------------------------------------------------------------------
1 | /*! ScrollMagic v2.0.5 | (c) 2015 Jan Paepke (@janpaepke) | license & info: http://scrollmagic.io */
2 | !function(e,i){"function"==typeof define&&define.amd?define(["ScrollMagic","velocity"],i):"object"==typeof exports?i(require("scrollmagic"),require("velocity")):i(e.ScrollMagic||e.jQuery&&e.jQuery.ScrollMagic,e.Velocity||e.jQuery&&e.jQuery.Velocity)}(this,function(e,i){"use strict";var t="animation.velocity",o=0;e.Scene.extend(function(){var r,u,n,c,l=this,s=e._util,a=0;l.on("progress.plugin_velocity",function(){v()}),l.on("destroy.plugin_velocity",function(e){l.off("*.plugin_velocity"),l.removeVelocity(e.reset)});var f=function(e,t,o){s.type.Array(e)?e.forEach(function(e){f(e,t,o)}):(i.Utilities.data(e,c)||i.Utilities.data(e,c,{reverseProps:s.css(e,Object.keys(u))}),i(e,t,o),void 0!==o.queue&&i.Utilities.dequeue(e,o.queue))},y=function(e,t){if(s.type.Array(e))e.forEach(function(e){y(e,t)});else{var o=i.Utilities.data(e,c);o&&o.reverseProps&&(i(e,o.reverseProps,t),void 0!==t.queue&&i.Utilities.dequeue(e,t.queue))}},v=function(){if(r){var e=l.progress();e!=a&&(0===l.duration()&&(e>0?f(r,u,n):y(r,n)),a=e)}};l.setVelocity=function(e,i,a){return r&&l.removeVelocity(),r=s.get.elements(e),u=i||{},n=a||{},c="ScrollMagic."+t+"["+o++ +"]",void 0!==n.queue&&(n.queue=c+"_queue"),v(),l},l.removeVelocity=function(e){return r&&(void 0!==n.queue&&i(r,"stop",n.queue),e&&y(r,{duration:0}),r.forEach(function(e){i.Utilities.removeData(e,c)}),r=u=n=c=void 0),l}})});
--------------------------------------------------------------------------------
/public/app/js/donut-chart.js:
--------------------------------------------------------------------------------
1 | var data = {
2 | labels: [
3 | "Claritas est etiam processus",
4 | "Mirum est notare quam littera",
5 | "Investigationes demonstraverunt",
6 | "Eodem modo typi"
7 | ],
8 | datasets: [
9 | {
10 | data: [48, 23, 17, 22],
11 | backgroundColor: [
12 | "#4cc2c0",
13 | "#3cb878",
14 | "#fcb03b",
15 | "#f15b26"
16 | ]
17 | }]
18 | };
19 | var ctx = document.getElementById("myChart");
20 | $(document).ready(function () {
21 |
22 | $('#myChart').waypoint(function () {
23 | var myDoughnutChart = new Chart(ctx, {
24 | type: 'doughnut',
25 | data: data,
26 | options: {
27 | legend: {
28 | display: false
29 | }
30 | },
31 | animation: {
32 | animateScale: true
33 | }
34 | });
35 | this.destroy();
36 | }, {offset: '75%'});
37 | });
38 |
--------------------------------------------------------------------------------
/public/app/js/form-actions.js:
--------------------------------------------------------------------------------
1 | $(function () {
2 | "use strict";
3 |
4 | $('.subscribe-form').on("submit", function (event) {
5 | // Stop form from submitting normally
6 | event.preventDefault();
7 |
8 | // Get some values from elements on the page:
9 | var $form = $(this),
10 | email = $.trim($form.find('input[name="email"]').val()),
11 | url = $form.attr("action");
12 |
13 | // Send the data using post
14 | var posting = $.post(url, {"email": email});
15 |
16 | // Put the results in a div
17 | posting.done(function () {
18 | $form.html('Thank you for subscription! ').fadeTo(300, 1);
19 | });
20 |
21 | });
22 |
23 | $('.contact-form').on("submit", function (event) {
24 |
25 | // Stop form from submitting normally
26 | event.preventDefault();
27 |
28 | // Get some values from elements on the page:
29 | var $form = $(this),
30 | name = $.trim($form.find('input[name="name"]').val()),
31 | email = $.trim($form.find('input[name="email"]').val()),
32 | permalink = ($form.find('input[name="permalink"]').length) ? $.trim($form.find('input[name="permalink"]').val()) : '',
33 | subject = ($form.find('input[name="subject"]').length) ? $.trim($form.find('input[name="subject"]').val()) : '',
34 | phone = ($form.find('input[name="phone"]').length) ? $.trim($form.find('input[name="phone"]').val()) : '',
35 | company = ($form.find('input[name="company"]').length) ? $.trim($form.find('input[name="company"]').val()) : '',
36 | message = $.trim($form.find('textarea[name="message"]').val()),
37 | url = $form.attr("action");
38 |
39 | // Send the data using post
40 | var posting = $.post(url, {'name': name, 'email': email, 'subject': subject, 'message': message, 'company': company, 'phone': phone, 'permalink': permalink})
41 |
42 | // Put the results in a div
43 | posting.done(function () {
44 | $form.html('Thank you for subscription! ').fadeTo(300, 1);
45 | });
46 |
47 | });
48 |
49 | });
50 |
51 |
--------------------------------------------------------------------------------
/public/app/svg/circle-facebook.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
9 |
10 |
11 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/public/app/svg/google.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
12 |
13 |
19 |
20 |
23 |
24 |
25 |
27 |
28 |
29 |
31 |
32 |
33 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/public/app/svg/rss.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/app/svg/twitter.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
8 |
13 |
14 |
--------------------------------------------------------------------------------
/public/app/svg/video-control.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/app/svg/youtube.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
9 |
10 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | /*
11 | |--------------------------------------------------------------------------
12 | | Register The Auto Loader
13 | |--------------------------------------------------------------------------
14 | |
15 | | Composer provides a convenient, automatically generated class loader for
16 | | our application. We just need to utilize it! We'll simply require it
17 | | into the script here so that we don't have to worry about manual
18 | | loading any of our classes later on. It feels nice to relax.
19 | |
20 | */
21 |
22 | require __DIR__.'/../bootstrap/autoload.php';
23 |
24 | /*
25 | |--------------------------------------------------------------------------
26 | | Turn On The Lights
27 | |--------------------------------------------------------------------------
28 | |
29 | | We need to illuminate PHP development, so let us turn on the lights.
30 | | This bootstraps the framework and gets it ready for use, then it
31 | | will load up this application so that we can run it and send
32 | | the responses back to the browser and delight our users.
33 | |
34 | */
35 |
36 | $app = require_once __DIR__.'/../bootstrap/app.php';
37 |
38 | /*
39 | |--------------------------------------------------------------------------
40 | | Run The Application
41 | |--------------------------------------------------------------------------
42 | |
43 | | Once we have the application, we can handle the incoming request
44 | | through the kernel, and send the associated response back to
45 | | the client's browser allowing them to enjoy the creative
46 | | and wonderful application we have prepared for them.
47 | |
48 | */
49 |
50 | $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
51 |
52 | $response = $kernel->handle(
53 | $request = Illuminate\Http\Request::capture()
54 | );
55 |
56 | $response->send();
57 |
58 | $kernel->terminate($request, $response);
59 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/public/uploads/products/book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bahdcoder/udemy-course-ecommerce/9571bc53869eedfea32981c83d22363b7bbe0c36/public/uploads/products/book.png
--------------------------------------------------------------------------------
/public/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Laravel PHP Framework
2 |
3 | [](https://travis-ci.org/laravel/framework)
4 | [](https://packagist.org/packages/laravel/framework)
5 | [](https://packagist.org/packages/laravel/framework)
6 | [](https://packagist.org/packages/laravel/framework)
7 | [](https://packagist.org/packages/laravel/framework)
8 |
9 | Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
10 |
11 | Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
12 |
13 | ## Official Documentation
14 |
15 | Documentation for the framework can be found on the [Laravel website](http://laravel.com/docs).
16 |
17 | ## Contributing
18 |
19 | Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](http://laravel.com/docs/contributions).
20 |
21 | ## Security Vulnerabilities
22 |
23 | If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylor@laravel.com. All security vulnerabilities will be promptly addressed.
24 |
25 | ## License
26 |
27 | The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).
28 |
--------------------------------------------------------------------------------
/resources/assets/js/app.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * First we will load all of this project's JavaScript dependencies which
4 | * include Vue and Vue Resource. This gives a great starting point for
5 | * building robust, powerful web applications using Vue and Laravel.
6 | */
7 |
8 | require('./bootstrap');
9 |
10 | /**
11 | * Next, we will create a fresh Vue application instance and attach it to
12 | * the body of the page. From here, you may begin adding components to
13 | * the application, or feel free to tweak this setup for your needs.
14 | */
15 |
16 | Vue.component('example', require('./components/Example.vue'));
17 |
18 | const app = new Vue({
19 | el: '#app'
20 | });
21 |
--------------------------------------------------------------------------------
/resources/assets/js/bootstrap.js:
--------------------------------------------------------------------------------
1 |
2 | window._ = require('lodash');
3 |
4 | /**
5 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support
6 | * for JavaScript based Bootstrap features such as modals and tabs. This
7 | * code may be modified to fit the specific needs of your application.
8 | */
9 |
10 | window.$ = window.jQuery = require('jquery');
11 | require('bootstrap-sass');
12 |
13 | /**
14 | * Vue is a modern JavaScript library for building interactive web interfaces
15 | * using reactive data binding and reusable components. Vue's API is clean
16 | * and simple, leaving you to focus on building your next great project.
17 | */
18 |
19 | window.Vue = require('vue');
20 | require('vue-resource');
21 |
22 | /**
23 | * We'll register a HTTP interceptor to attach the "CSRF" header to each of
24 | * the outgoing requests issued by this application. The CSRF middleware
25 | * included with Laravel will automatically verify the header's value.
26 | */
27 |
28 | Vue.http.interceptors.push((request, next) => {
29 | request.headers.set('X-CSRF-TOKEN', Laravel.csrfToken);
30 |
31 | next();
32 | });
33 |
34 | /**
35 | * Echo exposes an expressive API for subscribing to channels and listening
36 | * for events that are broadcast by Laravel. Echo and event broadcasting
37 | * allows your team to easily build robust real-time web applications.
38 | */
39 |
40 | // import Echo from "laravel-echo"
41 |
42 | // window.Echo = new Echo({
43 | // broadcaster: 'pusher',
44 | // key: 'your-pusher-key'
45 | // });
46 |
--------------------------------------------------------------------------------
/resources/assets/js/components/Example.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
Example Component
7 |
8 |
9 | I'm an example component!
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/resources/assets/sass/_variables.scss:
--------------------------------------------------------------------------------
1 |
2 | // Body
3 | $body-bg: #f5f8fa;
4 |
5 | // Borders
6 | $laravel-border-color: darken($body-bg, 10%);
7 | $list-group-border: $laravel-border-color;
8 | $navbar-default-border: $laravel-border-color;
9 | $panel-default-border: $laravel-border-color;
10 | $panel-inner-border: $laravel-border-color;
11 |
12 | // Brands
13 | $brand-primary: #3097D1;
14 | $brand-info: #8eb4cb;
15 | $brand-success: #2ab27b;
16 | $brand-warning: #cbb956;
17 | $brand-danger: #bf5329;
18 |
19 | // Typography
20 | $font-family-sans-serif: "Raleway", sans-serif;
21 | $font-size-base: 14px;
22 | $line-height-base: 1.6;
23 | $text-color: #636b6f;
24 |
25 | // Navbar
26 | $navbar-default-bg: #fff;
27 |
28 | // Buttons
29 | $btn-default-color: $text-color;
30 |
31 | // Inputs
32 | $input-border: lighten($text-color, 40%);
33 | $input-border-focus: lighten($brand-primary, 25%);
34 | $input-color-placeholder: lighten($text-color, 30%);
35 |
36 | // Panels
37 | $panel-default-heading-bg: #fff;
38 |
--------------------------------------------------------------------------------
/resources/assets/sass/app.scss:
--------------------------------------------------------------------------------
1 |
2 | // Fonts
3 | @import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
4 |
5 | // Variables
6 | @import "variables";
7 |
8 | // Bootstrap
9 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
10 |
--------------------------------------------------------------------------------
/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
1 | 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
1 | 'Passwords must be at least six characters and match the confirmation.',
17 | 'reset' => 'Your password has been reset!',
18 | 'sent' => 'We have e-mailed your password reset link!',
19 | 'token' => 'This password reset token is invalid.',
20 | 'user' => "We can't find a user with that e-mail address.",
21 |
22 | ];
23 |
--------------------------------------------------------------------------------
/resources/views/auth/login.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
68 | @endsection
69 |
--------------------------------------------------------------------------------
/resources/views/auth/passwords/email.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 |
4 | @section('content')
5 |
6 |
7 |
8 |
9 |
Reset Password
10 |
11 | @if (session('status'))
12 |
13 | {{ session('status') }}
14 |
15 | @endif
16 |
17 |
42 |
43 |
44 |
45 |
46 |
47 | @endsection
48 |
--------------------------------------------------------------------------------
/resources/views/auth/passwords/reset.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
Reset Password
9 |
10 |
11 | @if (session('status'))
12 |
13 | {{ session('status') }}
14 |
15 | @endif
16 |
17 |
71 |
72 |
73 |
74 |
75 |
76 | @endsection
77 |
--------------------------------------------------------------------------------
/resources/views/auth/register.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
76 | @endsection
77 |
--------------------------------------------------------------------------------
/resources/views/emails/purchased.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Purchase successful
6 |
7 |
8 | Thank you for purchasing
9 |
10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium saepe est, debitis aspernatur voluptates dolorem! Laudantium delectus recusandae, aliquam. Illum sit repellat culpa hic eos sint ipsum quibusdam unde necessitatibus!
11 |
12 |
13 |
--------------------------------------------------------------------------------
/resources/views/errors/503.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Be right back.
5 |
6 |
7 |
8 |
39 |
40 |
41 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/resources/views/home.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
Dashboard
9 |
10 |
11 | You are logged in!
12 |
13 |
14 |
15 |
16 |
17 | @endsection
18 |
--------------------------------------------------------------------------------
/resources/views/index.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.front')
2 |
3 | @section('page')
4 |
5 |
6 |
7 |
8 |
9 | @foreach($products as $product)
10 |
34 | @endforeach
35 |
36 |
37 |
38 |
39 |
{{ $products->links() }}
40 |
41 |
42 |
43 |
44 |
45 | @endsection
--------------------------------------------------------------------------------
/resources/views/layouts/app.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | {{ config('app.name', 'Laravel') }}
12 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
24 |
25 |
26 |
27 |
42 |
43 |
44 |
45 |
49 |
50 |
51 |
78 |
79 |
80 |
81 |
82 | @if($errors->count() > 0)
83 |
84 | @foreach($errors->all() as $error)
85 |
86 | {{ $error }}
87 |
88 | @endforeach
89 |
90 | @endif
91 |
92 | @if(Session::has('success'))
93 |
94 | {{ Session::get('success') }}
95 |
96 | @endif
97 |
98 | @yield('content')
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/resources/views/layouts/front.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Seosight - Shop
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
Udemy E-commerce tutorial
77 |
Buy books, and we ship to you.
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | @yield('page')
87 |
88 |
89 |
90 |
91 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
125 |
126 |
127 |
128 |
129 |
--------------------------------------------------------------------------------
/resources/views/products/create.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
Dashboard
9 |
10 |
34 |
35 |
36 |
37 |
38 | @endsection
39 |
--------------------------------------------------------------------------------
/resources/views/products/edit.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
Dashboard
9 |
10 |
35 |
36 |
37 |
38 |
39 | @endsection
40 |
--------------------------------------------------------------------------------
/resources/views/products/index.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
6 |
7 |
8 |
Products
9 |
10 |
11 |
12 |
13 |
14 | Name
15 |
16 |
17 | Price
18 |
19 |
20 | Edit
21 |
22 |
23 | Delete
24 |
25 |
26 |
27 | @foreach($products as $product)
28 |
29 | {{ $product->name }}
30 | {{ $product->price }}
31 |
32 | Edit
33 |
34 |
35 |
36 | {{ csrf_field() }}
37 | {{ method_field('DELETE') }}
38 | Delete
39 |
40 |
41 |
42 | @endforeach
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 | @endsection
51 |
--------------------------------------------------------------------------------
/resources/views/single.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.front')
2 |
3 | @section('page')
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
${{ $product->price }}
26 |
{{ $product->name }}
27 |
{{ $product->description }}
28 |
29 |
30 |
31 | {{ csrf_field() }}
32 |
37 |
38 |
39 |
40 |
41 | Add to Cart
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | @endsection
--------------------------------------------------------------------------------
/resources/views/vendor/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/notifications/email-plain.blade.php:
--------------------------------------------------------------------------------
1 | hasPages())
2 |
36 | @endif
37 |
--------------------------------------------------------------------------------
/resources/views/vendor/pagination/default.blade.php:
--------------------------------------------------------------------------------
1 | @if ($paginator->hasPages())
2 |
3 | {{-- Pagination Elements --}}
4 | @foreach ($elements as $element)
5 | {{-- Array Of Links --}}
6 | @if (is_array($element))
7 | @foreach ($element as $page => $url)
8 | @if ($page == $paginator->currentPage())
9 | {{ $page }}
10 | @else
11 | {{ $page }}
12 | @endif
13 | @endforeach
14 | @endif
15 | @endforeach
16 |
17 | @endif
18 |
--------------------------------------------------------------------------------
/resources/views/vendor/pagination/simple-bootstrap-4.blade.php:
--------------------------------------------------------------------------------
1 | @if ($paginator->hasPages())
2 |
17 | @endif
18 |
--------------------------------------------------------------------------------
/resources/views/vendor/pagination/simple-default.blade.php:
--------------------------------------------------------------------------------
1 | @if ($paginator->hasPages())
2 |
17 | @endif
18 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 | user();
18 | })->middleware('auth:api');
19 |
--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
18 | })->describe('Display an inspiring quote');
19 |
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 | 'FrontEndController@index',
16 | 'as' => 'index'
17 | ]);
18 |
19 | Route::get('/product/{id}', [
20 | 'uses' => 'FrontEndController@singleProduct',
21 | 'as' => 'product.single'
22 | ]);
23 |
24 | Route::post('/cart/add', [
25 | 'uses' => 'ShoppingController@add_to_cart',
26 | 'as' => 'cart.add'
27 | ]);
28 |
29 | Route::get('/cart', [
30 | 'uses' => 'ShoppingController@cart',
31 | 'as' => 'cart'
32 | ]);
33 |
34 | Route::get('/cart/delete/{id}', [
35 | 'uses' => 'ShoppingController@cart_delete',
36 | 'as' => 'cart.delete'
37 | ]);
38 |
39 | Route::get('cart/incr/{id}/{qty}', [
40 | 'uses' => 'ShoppingController@incr',
41 | 'as' => 'cart.incr'
42 | ]);
43 |
44 | Route::get('cart/decr/{id}/{qty}', [
45 | 'uses' => 'ShoppingController@decr',
46 | 'as' => 'cart.decr'
47 | ]);
48 |
49 | Route::get('/cart/rapid/add/{id}', [
50 | 'uses' => 'ShoppingController@rapid_add',
51 | 'as' => 'cart.rapid.add'
52 | ]);
53 |
54 | Route::get('/cart/checkout', [
55 | 'uses' => 'CheckoutController@index',
56 | 'as' => 'cart.checkout'
57 | ]);
58 |
59 | Route::post('/cart/checkout', [
60 | 'uses' => 'CheckoutController@pay',
61 | 'as' => 'cart.checkout'
62 | ]);
63 |
64 |
65 | Route::resource('products', 'ProductsController');
66 |
67 | Auth::routes();
68 |
69 | Route::get('/home', 'HomeController@index');
70 |
--------------------------------------------------------------------------------
/server.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $uri = urldecode(
11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 | );
13 |
14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 | // built-in PHP web server. This provides a convenient way to test a Laravel
16 | // application without having installed a "real" web server software here.
17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18 | return false;
19 | }
20 |
21 | require_once __DIR__.'/public/index.php';
22 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/tests/ExampleTest.php:
--------------------------------------------------------------------------------
1 | visit('/')
17 | ->see('Laravel');
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
22 |
23 | return $app;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------