Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blazeisclone/spaceops-web-admin
SpaceOps Website Admin Dashboard & API
https://github.com/blazeisclone/spaceops-web-admin
Last synced: 20 days ago
JSON representation
SpaceOps Website Admin Dashboard & API
- Host: GitHub
- URL: https://github.com/blazeisclone/spaceops-web-admin
- Owner: BlazeIsClone
- Created: 2024-09-08T02:03:59.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-08T03:02:14.000Z (4 months ago)
- Last Synced: 2024-11-02T00:24:59.288Z (2 months ago)
- Language: HTML
- Size: 4.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Base
[![Laravel](https://img.shields.io/badge/Laravel-%23FF2D20.svg?style=for-the-badge&logo=laravel&logoColor=white)](https://laravel.com/)
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.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
## Initial Setup
To get started, follow these artisan commands.
Migrate Database:
```bash
php artisan migrate
```Create Admin User:
```bash
php artisan make:user
```Sync Permissions:
```bash
php artisan sync:permissions
```Symlink Storage:
```bash
php artisan storage:link
```## Testing
Running Feature & Unit Tests:
```bash
php artisan test
```