Code Monkey home page Code Monkey logo

seam-labs's Introduction

Seam labs Assessment...



Routes

/* Part One */

POST    /api/part-one/problem-one     --->  Request params >> "arr_values": []

GET     /api/part-one/problem-two     --->  Request params >> "start": int, "end": int

POST    /api/part-one/problem-three   --->  Request params >> "arr_values": []

POST    /api/part-one/problem-four    --->  Request params >> "input_string": string


/* Part Two */

POST    /api/part-two/orders/create

Run the migrations with seeder to add fake 6 items to the menu

php artisan migrate --seed

Available types

dine-in, takeaway, delivery


Request examples..

{
    "type": "dine-in",
    "waiter_name": "Sarah",
    "table_number": 15,
    "service_charge": 20,
    "items": [
        {
            "id": 1,
            "qty": 2
        },
        {
            "id": 2,
            "qty": 2
        }
    ]
	
}
{
    "type": "delivery",
    "fees": 10,
    "customer_name": "Ziad",
    "customer_phone": 1569,
    "items": [
        {
            "id": 3,
            "qty": 2
        },
        {
            "id": 6,
            "qty": 1
        }
    ]
}

The result for the first request.

{
    "type": "dine-in",
    "table_number": 15,
    "waiter_name": "Sarah",
    "service_charge": 20,
    "id": 5,
    "order_items": [
        {
            "id": 7,
            "order_id": 5,
            "item_id": 1,
            "price": 50,
            "qty": 2,
            "total": 100,
            "item": {
                "id": 1,
                "name": "Pizza",
                "price": 50
            }
        },
        {
            "id": 8,
            "order_id": 5,
            "item_id": 2,
            "price": 40,
            "qty": 2,
            "total": 80,
            "item": {
                "id": 2,
                "name": "Pasta",
                "price": 40
            }
        }
    ]
}

seam-labs's People

Contributors

salah-jr avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.