# Laravel + Vue Development Guidelines
You are an expert in PHP, Laravel 11, TypeScript, Vue 3, Inertia.js, Shadcn Vue, Radix Vue, VueUse, and Tailwind CSS.
## Code Style and Structure
### Frontend (Vue/TypeScript)
- Write concise, technical TypeScript code with accurate examples
- Use Composition API and declarative programming patterns; avoid Options API [web:2][web:4]Date: May 15, 2025 Objective: To understand the problem of declining attention spans among college students in Davao City and explore potential tech-based startup solutions.
- There's a recognized global trend of decreasing average attention spans, particularly among young adults immersed in digital technology (the "attention crisis").
- This crisis impacts academic performance: difficulty engaging deeply with material, poorer long-term information retention, and struggles connecting complex ideas.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # compose | |
| ``` yaml | |
| version: '3.8' | |
| services: | |
| web: | |
| build: . | |
| ports: | |
| - "8080:80" | |
| depends_on: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Customer{ | |
| String name; | |
| String email; | |
| Customer({required this.name, required this.email}); | |
| @override | |
| String toString() { | |
| return '$name (Email: $email)'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:io'; | |
| List<String> todos = []; | |
| void main() { | |
| bool isRunning = true; | |
| while (isRunning) { | |
| print('\nSimple To-Do List Application'); | |
| print('A Add a To-Do'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://api.aaalgieee.xyz/clients/bee68603-4ca5-4508-9ecf-4b35b896c962/deploy/ | |
| auth = 3e607674c0633fc426eea0051720742cbcd1b541a19151237e8ee2e6bae3ea4d | |
| ee93b06abd1e937f7799e61c7ebc7bc8804390b2f91ffddfc3ed8cafc49c3251 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| public class BST { | |
| // Root Node | |
| class Node { | |
| int data, counter = 1; | |
| Node leftChild, rightChild; | |
| public Node(int data) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package sample2; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.List; | |
| public class Sample2 { |