Search posts, tags, users, and pages
Codivores
Updated version for Laravel 10 / Twill 3 on Apr 14, 2023 In this article, we will see the creation and customization of a first content module. Module creation In Twill terminology, a Module represents all the files needed to manage a content type: ...
Siegert Naber
Hi there, I got an error when running php artisan migrate.
php artisan migrate
It turns out I had to add one line to app\Providers\AppServiceProvider:
app\Providers\AppServiceProvider
use Illuminate\Support\Str;
Hi Siegert Naber, I suppose you cloned the GitHub repository? But I'm not sure which branch you used, as the main branch already has this use: github.com/Codivores/tutorial-laravel-twill-inert…
use
Siegert Naber But indeed, we forgot to mention adding it in the article; it has now been updated. Sorry about that!
Codivores I just followed the articles, coded along and found out that way. After that I cloned the Github repository :)
Tomáš Popík
Fullstack developer
Amazing work! Thank you very much. It is exactly what I was looking for.
Siegert Naber
Hi there, I got an error when running
php artisan migrate.It turns out I had to add one line to
app\Providers\AppServiceProvider:use Illuminate\Support\Str;