https://github.com/venturedrake/laravel-crm-starter
Install and setup a complete Laravel CRM application
https://github.com/venturedrake/laravel-crm-starter
laravel php
Last synced: 9 months ago
JSON representation
Install and setup a complete Laravel CRM application
- Host: GitHub
- URL: https://github.com/venturedrake/laravel-crm-starter
- Owner: venturedrake
- License: mit
- Created: 2021-03-31T00:21:03.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2025-06-14T10:38:27.000Z (12 months ago)
- Last Synced: 2025-08-15T23:50:56.857Z (10 months ago)
- Topics: laravel, php
- Language: PHP
- Homepage: https://laravelcrm.com
- Size: 5.64 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel CRM Starter
A complete starter project for the [Laravel CRM Package](https://github.com/venturedrake/laravel-crm).
This project uses Laravel 9 with the starter kit [Laravel Breeze](https://laravel.com/docs/9.x/starter-kits#laravel-breeze).
# Requirements
- **PHP**: 8.0 or higher
- **For MySQL users**: 5.7.23 or higher
- **For MariaDB users**: 10.2.7 or higher
# Installation
## Clone the repo
```bash
git clone --depth=1 https://github.com/venturedrake/laravel-crm-starter.git
```
This will create a shallow clone of the repo, from there you would just need to remove the `.git` folder and reinitialise it to make it your own.
Then install composer dependencies
```bash
composer install
```
## Configure the Laravel app
Copy the `.env.example` file to `.env` and make sure the details match to your install.
```shell
cp .env.example .env
```
All the relevant configuration files should be present in the repo.
## Complete the installation
Generate the application key
```
php artisan key:generate
```
Link the storage directory
```
php artisan storage:link
```
Install Laravel CRM
```
php artisan laravelcrm:install
```