KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
lvartisan
★ 20
Open GitHub ↗
Laravel artisan command for creating view.
Download README (.md)
Explore Similar Repositories
examples
:
No description available.
contractmanager
:
ContractManager is a contract management software for the Jameica platform.
Personal-Assistant
:
Household Intelligent Assistant
THREE.Text
:
THREE.TextMesh for three.js
angular2-swiper-example
:
Example of how to use Swiper in angular 2 application
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
lvartisan
?
Download (.md)
# Lvartisan ## Laravel artisan command for creating view This is just initial work on dev mode, the code structure may change and some extra option will be added soon. ### Require it ``` composer require monirz/lvartisan ``` ### Add the service provider to the config/app.php ``` monirz\lvartisan\LvartisanServiceProvider::class ``` Voila, You are done! ### Basic usages ``` php artisan make:view articles/index ``` The above example command will create the articles directory in views if the directory doesn't exist and the index.blade.php file in the articles directory. ``` php artisan make:view index ``` With this command the directory name is not provided so the index.blade.php file will be created in root directory which is views.