Skip to content

Instantly share code, notes, and snippets.

@uxdiin
uxdiin / index.md
Created April 16, 2021 09:24 — forked from meigwilym/index.md
Notes on stitcher.io's Laravel beyond CRUD

Laravel beyond CRUD

stitcher.io

A blog series for PHP developers working on larger-than-average Laravel projects

Written for projects with a development lifespan of six to twelve months, with a team of three to six developers working on them simultaneously.

Chapter 1: Domain oriented Laravel

@uxdiin
uxdiin / app_session.sql
Created January 1, 2022 08:55 — forked from mindyng/app_session.sql
TestDome SQL Practice Q's
/*App usage data are kept in the following table:
TABLE sessions
id INTEGER PRIMARY KEY,
userId INTEGER NOT NULL,
duration DECIMAL NOT NULL
Write a query that selects userId and average session duration for each user who has more than one session.*/
-- Example case create statement: