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.
- Host: GitHub
- URL: https://github.com/codeadamca/laravel-php-cms
- Owner: codeadamca
- Created: 2022-01-12T23:24:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:15:06.000Z (5 months ago)
- Last Synced: 2025-03-31T07:18:42.527Z (3 months ago)
- Topics: cms, laravel, php
- Language: PHP
- Homepage:
- Size: 114 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)