An open API service indexing awesome lists of open source software.

https://github.com/stats4sd/tpp-metrics-library

A WIP system for collecting and curating metrics related to agroecology and measureing agroecological transitions
https://github.com/stats4sd/tpp-metrics-library

Last synced: 25 days ago
JSON representation

A WIP system for collecting and curating metrics related to agroecology and measureing agroecological transitions

Awesome Lists containing this project

README

          

# Stats4SD Laravel Platform Template
This installation is a 'default' Laravel 9.X installation for Stats4SD projects with a host of configuration and core packages already setup.

It includes the following composer packages:

- Laravel Backpack 5 (backpack/crud)
- Backpack's version of the Spatie Permission Manager (backpack/permissionmanager)
- Laravel Telescope

And the following dev packages for scaffolding and code helpers:

- [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper)

## Laravel Backpack for Admin panel
This template comes with Laravel Backpack to help quickly build CRUD panels for data management. We have made the following changes to the default configuration:

- Backpack uses the 'web' guard for authentication, so users do not need to log into the 'admin panel' seperately from the 'front-end'.
- Backpack's auth routes are *not* enabled. Instead, use the auth routes setup through Laravel Breeze (located in `routes/auth.php`).

In this default setup, **any authenticated user can access the admin panel**. We often stick with this setup as our platforms are mostly or entirely within the admin panel. Given this, please make good use of CRUD::denyAccess() within the platform's Crud Controllers.