Laravel | Tipps und Tricks
Inhaltsverzeichnis
Starter
Create Laravel Starter with basic functionalities
laravel new --jet --stack livewire --teams app
Views
Extend the file resources/views/navigation-menu.blade.php
<!-- Navigation Links --> <div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"> <x-jet-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')"> { __('Dashboard') }} </x-jet-nav-link> </div> <div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"> <x-jet-nav-link href="{{ route('particles') }}" :active="request()->routeIs('particles')"> {{ __('Particles') }} </x-jet-nav-link> </div>
Display Laravel and PHP Version
<div> Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) </div>
Create new View and Component
php artisan make:component NewComponent
Creates
app/View/Components/NewComponent.php
and
resources/views/components/new-component.blade.php
Command Line
Create new command make:view
Original source is here
php artisan make:command MakeViewCommand
Create the following file
app/Console/Commands/MakeViewCommand.php
Edit the file and overwrite code with the following
<?php namespace App\Console\Commands; use Illuminate\Console\Command; use File; class MakeViewCommand extends Command { protected $signature = 'make:view {view}'; protected $description = 'Create a new blade template.'; public function __construct() { parent::__construct(); } public function handle() { $view = $this->argument('view'); $path = $this->viewPath($view); $this->createDir($path); if (File::exists($path)) { $this->error("File {$path} already exists!"); return; } File::put($path, $path); $this->info("File {$path} created."); } public function viewPath($view) { $view = str_replace('.', '/', $view) . '.blade.php'; return "resources/views/{$view}"; } public function createDir($path) { $dir = dirname($path); if (!file_exists($dir)) { mkdir($dir, 0777, true); } } }
Database
SQLite
Create an empty SQLite Database
sqlite3 database.sqlite "create table t(f int); drop table t;"
Links
https://laravel-news.com/
https://laravel-news.com/learning-laravel-in-2021
https://laravel.com/docs/8.x
https://laravel-livewire.com/screencasts/installation
Tutorial
https://www.tutsmake.com/category/laravel-tutorial/
https://www.tutsmake.com/laravel-interview-questions-answers-for-1235-year-experience/
https://learn2torials.com/category/laravel
https://kinsta.com/blog/laravel-tutorial/#6-best-free-laravel-tutorial-sites
Database
https://laravel.com/docs/8.x/eloquent#introduction
Blade
https://www.a-coding-project.de/ratgeber/laravel/blade
Blog erstellen
https://www.flowkl.com/tutorial/web-development/simple-blog-application-in-laravel-7/
https://www.section.io/engineering-education/laravel-beginners-guide-blogpost/
https://medium.com/@dinyangetoh/how-to-build-a-blog-with-laravel-9f735d1f3116
https://medium.com/@dinyangetoh/how-to-build-a-blog-with-laravel-9f735d1f3116
Leave a Reply