Quick viewing(Text Mode)

Designing and Developing a Website Using Laravel

Richard Awale

DESIGNING AND DEVELOPING A DYNAMIC USING

DESIGNING AND DEVELOPING A WEBSITE USING LARAVEL

Richard Awale Bachelor’s Thesis Autumn 2018 Information technology Oulu University of Applied Sciences

ABSTRACT OULU UNIVERSITY OF APPLIED SCIENCES

Degree Programme in Information Technology. Option of Internet services.

Author: Richard Awale Title of the bachelor’s thesis: Designing and Developing a Website using Laravel

Term and year of completion: 2018 Number of pages: 44 Supervisor: Janne Kumpuoja

The main purpose of this thesis was to design and develop a user-friendly, responsive website with an admin panel for easy maintenance of the website. The project was given to me by Mr. Arindam Mallick, owner of the Indian restaurant “Indian Cuisine”.

The urge to learn a new technology for me and with the consultation of the client Laravel framework was chosen along with other tools such as HTML, CSS, JS, and Bootstrap. The MAMP localhost was the localhost used for the development of this project. Laravel was then set up to the MAMP localhost in a local computer. A free to use bootstrap template was chosen after discussing with the client. The necessary update was made to the template to get the desire front-end although it could be improved. The and tables were created according to the need and were migrated to the server.

The website has been created and is handed over to the client. Although all the project objectives were completed, there is some room for improvement which is currently on the process, Thus the website is not online.

Keywords: Laravel, MVC, MAMP localhost, PHP, PHP framework

3

PREFACE

This project was ordered by “INDIAN CUISINE”, an Indian restaurant located in Kajaaninkatu 38,90100. The client representative is the owner of the restaurant Mr. Arindam Mallick. The work was done for the Oulu University of Applied Science. The supervisor of the thesis was Mr. Janne Kumpuoja. The role of the thesis supervisor is to guide the author of the thesis about the thesis document and developing the webpage itself.

I would like to thank Mr. Arindam Mallick for trusting me and believing in me to develop a website for his restaurant. I would also like to thank my supervisor for helping me in all the thesis related work and guiding me to complete my thesis. I would also like to thank my project partner Mr. Bishal Shah without whom I could not have completed some part of my thesis especially things related to the stripe payment and some Laravel back-end.

Oulu, 26.11.2018

Richard Awale

4

CONTENTS

ABSTRACT 3 PREFACE 4 TABLE OF CONTENTS 5 VOCABULARY 7 1 INTRODUCTION 8 2 WEB DEVELOPMENT TOOLS AND TECHNOLOGIES USED 10 2.1 Front-End 10 2.1.1 HTML 10 2.1.2 CSS 10 2.1.3 JavaScript (JS) 11 2.1.4 Bootstrap 12 2.2 Backend 13 2.2.1 MAMP localhost 13 2.2.2 PHP 15 2.2.3 PHP Framework 16 2.2.4 PHP(framework) security and threats 17 2.2.5 Stripe payment 18 3 LARAVEL 20 3.1 Brief History of Laravel 20 3.2 Installations 21 3.2.1 22 3.2.2 Server Requirement 22 3.3 Configurations 23 3.4 Routes 24 3.5 Controllers 25 3.6 View 26 4 IMPLEMENTATION (CREATING WEBSITE FOR AN INDIAN RESTAURANT INDIANCUISINE) 27 4.1 Front-end implementation 28 4.1.1 Usage of Bootstrap in Project 28 5

4.1.2 Blade files. 30 4.2 Backend implementation 34 4.2.1 Controllers 34 4.2.2 Model 38 4.2.3 Database 39 5 CONCLUSION 42

6

VOCABULARY

Bootstrap - Bootstrap is a free and open-source front-end for designing and web applications. It contains HTML- and CSS-based design templates for typography, forms, buttons, navigation, and other interface components, as well as optional JavaScript extensions.

CSS – Cascading Style Sheets

HTML – Hyper Text Markup Language

JS – JavaScript

PHP – Pre-processor

7

1 INTRODUCTION

I have studied Information Technology at the Oulu University of Applied Science for over 4 years and I am hoping to implement the things I have learned during that period and learn a new PHP framework “Laravel” in process. I have always been fond of Front-end development of a website but to work on both Front and Back-end of this project will be a challenge and source for my personal growth. In this project, a website for “IndianCuisne” has been designed and developed.

1.1 IndianCuisine

“IndianCuisine” is an average size Indian eatery which serves quality Indian food. The restaurant is in Kajaaninkatu 38, 90100, Oulu. During the weekdays from 10.30 am till 3 pm lunch is served at a special price. There is also a buffet during Lunch time where you can get salads, rice, Butter naan different vegetable, and meat curries and hot & cold beverages for just 10.40 €. Apart from lunchtime, there is also a dinner with the selection of food ranging from vegan, vegetarian and non-vegetarian Indian curries. They also serve varieties of Naan bread, starters, and desserts.

1.2 Motivation

For any start-up company or even for an established and reputed company such as “IndianCuisine” a well-informed and easy to use website is the must for future development of the company. Nowadays there are websites for everything from small stores to big supermarkets and hotels. But having a website is not enough currently, having a competitively attractive and easy to use website is a must for the better success of a company. The previous website has been outdated and in need of change. So, to be updated with the current trend the project was offered.

8

1.3 Objective

The major aim of this thesis was to develop a dynamic and responsive website for the client. The major task could be divided into several individual small parts as:

I) Selecting a Front-end template according to the client II) Adding and Modifying the layout III) Ensuring the website is responsive IV) Creating necessary database tables V) Following the MVC model VI) Creating an admin panel for an easy use. (CRUD operation) VII) Securing Authentication

9

2 WEB DEVELOPMENT TOOLS AND TECHNOLOGIES USED

Web development is the process of creating either a static or dynamic webpage or web- application with the different technologies for the internet(WWW) or intranet (private network). The web development process can be broadly divided into two parts. The first part, Front-End consists of a (UI) of the i.e. how the page will look for the user. The second part is Back-end. It consists of all the and table and basically concerns all the server-side programming. The technologies used in the project are briefly described below:

2.1 Front-End

Front-end is a part of website development where the view or design of a website is created using Front-end Development tools. The tools used in this project are explained below.

2.1.1 HTML

HTML stands for a Hyper Text Markup Language. It is a Markup language for creating web pages and websites. The elements of HTML are the building block of a website and are represented by tags. Tags do not render themselves on a webpage, but they help to render other content. Example of HTML tags is “body”, “head”, “title”, “table”. The tags are enclosed in <>.

Syntax: < body> ,

.

Most of the tags have closing tags and they are represented as above.

2.1.2 CSS

CSS stands for a Cascading Style Sheet. It is used to add a style to HTML elements. It can be written in an HTML file or separately as a “.CSS” extension.

10

Syntax:

FIGURE 1. Standard CSS syntax (W3Schools CSS, Date of retrieval 19th May 2018)

A standard CSS syntax consists of a selector and a declaration block as shown in figure 1. The selector points to the HTML element which one wishes to style. The property and value are separated by a colon (:). Each declaration block is surrounded by curly braces and each declaration ends with a semicolon (;).

2.1.3 JavaScript (JS)

JS is a high level, interpreted programming language. It is a , primarily used on the Web. Being an interpreted language, it does not need to be compiled. It renders web pages in an interactive and dynamic fashion. It is one of the three core technologies of the (WWW) along with HTML and CSS. (W3schools, Date of retrieval 19th May 2018).

It is case sensitive and generally, the name of the function and variable is written with a lower case. Every statement is ended with a semicolon (;). For example, a variable is defined as: “var a = 10;”. Here ‘var’ is a datatype of the variable ‘a’, ‘=’ is an operator which assigns a value ‘10’ to the variable ‘a’. is used in an HTML file to insert JS script into HTML. If separate JS file is created its source must be pointed using an src attribute of