Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```