TVZ SPORT is a web application that allows users to read sports news, look up team and player information, comment on topics of interest, and see match fixtures and updates.
- Sports News: Stay updated with the latest sports news.
- Team Information: Look up information about different sports teams.
- Player Information: Get details about various players.
- Commenting: Comment on topics of interest and engage with other users.
- Match Fixtures: View upcoming and past match fixtures.
- Match Updates: Receive live updates about ongoing matches.
- PHP >= 7.4
- Composer
- MySQL
- Laravel >= 8.x
-
Clone the repository:
git clone https://github.com/your-username/tvz-sport.git cd tvz-sport
-
Install dependencies:
composer install
-
Set up the environment:
Copy the
.env.example
file to.env
and update the necessary configurations, especially the database settings.cp .env.example .env
-
Generate an application key:
php artisan key:generate
-
Run database migrations:
php artisan migrate
-
Seed the database (if necessary):
php artisan db:seed
To start the Laravel development server, run:
```bash
php artisan serve