Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Livewire v3 (Quick Fix) #43

Merged
merged 5 commits into from
Nov 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Laravel Translations UI is a package that provides a simple and friendly user in

### Requirements

- PHP 7.4 or higher
- Laravel 8.x or higher
- PHP 9.1 or higher
- Laravel 10.x or higher

#### Features

Expand All @@ -49,16 +49,16 @@ To install Laravel Translations UI in your Laravel project, run the following co
composer require outhebox/laravel-translations
```

After installing the package, you'll need to publish its assets by running the following command:
Before you can import translations, you'll need to migrate your database. Run the following command to do so:

```bash
php artisan translations:install
php artisan migrate
```

Before you can import translations, you'll need to migrate your database. Run the following command to do so:
After installing the package, you'll need to publish its assets by running the following command:

```bash
php artisan migrate
php artisan translations:install
```

### Usage
Expand Down