No description
  • PHP 52.9%
  • Vue 46.6%
  • JavaScript 0.4%
  • Blade 0.1%
Find a file
2024-03-07 20:44:35 -08:00
app simplified asset models & created 2 migrations 2024-03-07 20:43:15 -08:00
bootstrap Initial commit 2022-10-25 10:24:11 -07:00
config Added support for database backups 2022-11-29 10:31:50 -08:00
database simplified asset models & created 2 migrations 2024-03-07 20:43:15 -08:00
lang/en Initial commit 2022-10-25 10:24:11 -07:00
public Updated favicon 2022-10-31 16:55:22 -07:00
resources simplified asset models & created 2 migrations 2024-03-07 20:43:15 -08:00
routes Allow users to delete chirps 2022-12-16 23:57:18 -08:00
storage Initial commit 2022-10-25 10:24:11 -07:00
tests Jetstream features 2022-10-31 13:29:59 -07:00
.editorconfig Initial commit 2022-10-25 10:24:11 -07:00
.env.example Migrated from breeze to jetstream 2022-10-31 13:25:22 -07:00
.gitattributes Initial commit 2022-10-25 10:24:11 -07:00
.gitignore ignore package changes 2024-03-07 20:44:35 -08:00
artisan Initial commit 2022-10-25 10:24:11 -07:00
composer.json Added support for database backups 2022-11-29 10:31:50 -08:00
composer.lock updated dependency versions/readme 2023-01-28 15:04:16 -08:00
jsconfig.json Initial Deployment 2022-10-25 12:12:13 -07:00
package-lock.json Added package for relative times 2022-12-15 12:46:51 -08:00
package.json Added package for relative times 2022-12-15 12:46:51 -08:00
phpunit.xml Initial commit 2022-10-25 10:24:11 -07:00
postcss.config.js Initial Deployment 2022-10-25 12:12:13 -07:00
README.md updated dependency versions/readme 2023-01-28 15:04:16 -08:00
tailwind.config.js Add table builder to requirements 2022-11-01 20:42:41 -07:00
vite.config.js Initial Deployment 2022-10-25 12:12:13 -07:00

Asset Tracker Logo


Laravel Forge Site Deployment Status

License

The Laravel framework is open-sourced software licensed under the MIT license. The project itself "Asset Tracker" is not open-source (License TBD).

Project Tracker

View the up to date progress tracker here. Feel free to add a suggestion as a comment.

Setup & Installation

Requirements

Installation

  • Create an .env file based on the .env.example
  • php ini enable these extensions
  • composer install
  • composer update
  • composer global require laravel/installer
  • Add Laravel Jetstream to handle authentication, etc
    composer require laravel/jetstream --dev
    
  • Add table builder to display data in tables
    composer require protonemedia/inertiajs-tables-laravel-query-builder
    
    composer require spatie/laravel-query-builder
    
  • Install dependencies
    npm install
    
  • Serve application
    php artisan serve
    
  • Generate app key in browser (first time only)
  • Create/migrate database (first time only - or if updates are made to database) - use a new terminal
    php artisan migrate
    
    • make sure that php.ini has the pdo_mysql extension uncommented -> prevent missing driver error
  • Using Vite
    npm run dev
    

Querying Production Database

  • In app directory login to the forge cli, providing the api key when requested
    forge login
    
    • if you receive a curl(60) error, download a certificate from here
  • Enter an ssh session with the server
    forge ssh
    
    • to generate an ssh read here
  • Login to MySQL on the server
    mysql --user=admin --password=password db_name
    
    • query using SQL!
    • see here for MySQL syntax and commands or here for MySQL Shell commands

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.

If you don't feel like reading, Laracasts can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.