alfreinsco/tesaja
Minimal Laravel starter package that demonstrates how to ship and publish Blade views. Install via Composer, optionally publish views with the hello-views tag, then render hello-starter::hello (or the published vendor view). MIT licensed.
Contoh paket Laravel termudah untuk menerbitkan view.
composer require alfreinsco/hello-starter
php artisan vendor:publish --tag=hello-views
// Di controller atau route
return view('hello-starter::hello');
// Atau setelah publish
return view('vendor.hello-starter.hello');
src/
├── HelloStarterServiceProvider.php
resources/
└── views/
└── hello.blade.php
MIT
How can I help you explore Laravel packages today?