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

https://github.com/codeadamca/laravel-php-cms

Recoding the basic PHP CMS using Laravel.
https://github.com/codeadamca/laravel-php-cms

cms laravel php

Last synced: about 2 months ago
JSON representation

Recoding the basic PHP CMS using Laravel.

Awesome Lists containing this project

README

        

# Laravel CMS using Vanilla PHP Views

This repository is copy of the simple [PHP CMS](https://github.com/codeadamca/php-cms) except the CMS has been converted to Laravel.

## Installation

The CMS uses the public storage driver, make sure to update your `.env` file:

```php
FILESYSTEM_DRIVER=public
```

The database setup includes migrations and seeding. Run the following command to initialize the database:

```sh
php artisan migrate:refresh --seed
```

All user accounts will have the default password of `password`.

> Full tutorial URL:
> https://codeadam.ca/learning/php-cms-laravel.html

***

## Repo Resources

* [Visual Studio Code](https://code.visualstudio.com/)
* [Laravel](https://laravel.com/)