Skip to content

Commit 3ee1fe1

Browse files
authored
Merge pull request #20 from Astrotomic/remove-addons
remove addons
2 parents 5c64a6a + 8b498e2 commit 3ee1fe1

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
lines changed

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,6 @@ echo $post->translate('fr')->title; // Mon premier post
6565
* [How To Build An Efficient and SEO Friendly Multilingual Architecture For Your Laravel Application](https://mydnic.be/post/how-to-build-an-efficient-and-seo-friendly-multilingual-architecture-for-your-laravel-application)
6666
* [How to Add Multi-Language Models to Laravel QuickAdminPanel](https://quickadminpanel.com/blog/how-to-add-multi-language-models-to-laravel-quickadminpanel/)
6767

68-
## Add-Ons
69-
70-
Thanks to the community a few packages have been written using this package:
71-
72-
* [typicms/translatablebootforms](https://packagist.org/packages/typicms/translatablebootforms)
73-
* [arraycms/translatablebootforms](https://packagist.org/packages/arraycms/translatablebootforms)
74-
* [baklysystems/laravel-translatable-bootforms](https://packagist.org/packages/baklysystems/laravel-translatable-bootforms)
75-
* [chang/nova-translation](https://packagist.org/packages/chang/nova-translation)
76-
* [asgardcms](https://packagist.org/packages/asgardcms)
77-
78-
If you want to be add yours to this list, just open a PR.
79-
8068
## Versions
8169

8270
| Package | Laravel | PHP |

docs/README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is a Laravel package for translatable models. Its goal is to remove the com
1010

1111
## Quick Example
1212

13-
### **Getting translated attributes**
13+
### Getting translated attributes
1414

1515
```php
1616
$post = Post::first();
@@ -23,7 +23,7 @@ App::setLocale('de');
2323
echo $post->title; // Mein erster Post
2424
```
2525

26-
### **Saving translated attributes**
26+
### Saving translated attributes
2727

2828
```php
2929
$post = Post::first();
@@ -36,7 +36,7 @@ $post = Post::first();
3636
echo $post->translate('en')->title; // My cool post
3737
```
3838

39-
### **Filling multiple translations**
39+
### Filling multiple translations
4040

4141
```php
4242
$data = [
@@ -55,19 +55,6 @@ echo $post->translate('fr')->title; // Mon premier post
5555
* [How To Build An Efficient and SEO Friendly Multilingual Architecture For Your Laravel Application](https://mydnic.be/post/how-to-build-an-efficient-and-seo-friendly-multilingual-architecture-for-your-laravel-application)
5656
* [How to Add Multi-Language Models to Laravel QuickAdminPanel](https://quickadminpanel.com/blog/how-to-add-multi-language-models-to-laravel-quickadminpanel/)
5757

58-
## Add-Ons
59-
60-
Thanks to the community a few packages have been written using this package:
61-
62-
* [typicms/translatablebootforms](https://packagist.org/packages/typicms/translatablebootforms)
63-
* [arraycms/translatablebootforms](https://packagist.org/packages/arraycms/translatablebootforms)
64-
* [baklysystems/laravel-translatable-bootforms](https://packagist.org/packages/baklysystems/laravel-translatable-bootforms)
65-
* [yeswedev/nova-translatable](https://packagist.org/packages/yeswedev/nova-translatable)
66-
* [chang/nova-translation](https://packagist.org/packages/chang/nova-translation)
67-
* [asgardcms](https://packagist.org/packages/asgardcms)
68-
69-
If you want to be add yours to this list, just open a PR.
70-
7158
## Versions
7259

7360
| Package | Laravel | PHP | | |

0 commit comments

Comments
 (0)