“Składniki ostrza laravel” Kod odpowiedzi

Laravel Foreach najpierw

@foreach ($users as $user)
    @if ($loop->first)
        This is the first iteration.
    @endif

    @if ($loop->last)
        This is the last iteration.
    @endif

    <p>This is user {{ $user->id }}</p>
@endforeach
Fernando Gunther

Składniki ostrza laravel

// Create component in terminal using :
	php artisan make:component MyComponent
  
// 2 files will be made : 
// * app\View\Components\MyComponent.php 
//   - Handels functionality.
// * resources\views\components\my-component.blade.php ()
//   - Code snippet for component. Must be inside <div>...</div>.
  	
// Call component in any other blade file using :
	<x-my-component />

// Send hardcoded parameter :
    <x-my-component name="Hello World!"/>

// Send a php parameter :
    <x-my-component :text="$message"/>
Lazurite

Odpowiedzi podobne do “Składniki ostrza laravel”

Pytania podobne do “Składniki ostrza laravel”

Więcej pokrewnych odpowiedzi na “Składniki ostrza laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu