Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenxsantos/basic-crud-laravel
A basic crud system using laravel framework
https://github.com/kenxsantos/basic-crud-laravel
class-activities crud laravel
Last synced: 1 day ago
JSON representation
A basic crud system using laravel framework
- Host: GitHub
- URL: https://github.com/kenxsantos/basic-crud-laravel
- Owner: kenxsantos
- Created: 2024-03-13T14:11:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T03:12:03.000Z (5 months ago)
- Last Synced: 2024-06-21T16:19:56.754Z (5 months ago)
- Topics: class-activities, crud, laravel
- Language: PHP
- Homepage: https://basic-crud-laravel.onrender.com
- Size: 338 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Homepage Screenshot](public/output.png)
## Table of Contents
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Running the Application](#running-the-application)
- [Contributing](#contributing)## README
This repository contains code written in Laravel. Below are instructions on how to set up and run the Laravel project.
## Prerequisites
- PHP (recommended version: 7.4 or higher)
- Composer
- MySQL or any other compatible database server
- Node.js and npm (for frontend assets compilation, optional)
## Installation
- Clone this repository to your local machine:
- Navigate to the project directory:
- Install Composer:
- Generate your own .env file:
- Genereate key for APP_KEY:
- Migrate your tables to database:
- Add your WeatherAPI Key at .env
git clone https://github.com/your-username/your-repository.git
cd your-repository
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate
OPENWEATHERMAP_API_KEY=your_key
## Running the Application
To run the Laravel application locally, execute the following command:
php artisan serve
This will start a development server. You can access the application in your web browser at http://localhost:8000
.
## Additional Notes
- Make sure your web server (e.g., Apache, Nginx) is properly configured to serve the Laravel application if you're not using the built-in development server.
- Ensure that appropriate file permissions are set, especially for storage and bootstrap/cache directories.
- For advanced usage and deployment considerations, please refer to the official Laravel documentation.
## Contributing
If you wish to contribute to this project, please fork the repository, make your changes, and submit a pull request.
## License
This project is licensed under the MIT License.