PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Mechanisms
/
Editing: Mechanism.php
<?php namespace Livewire\Mechanisms; use Illuminate\Support\Facades\Blade; use Illuminate\Support\Str; use Livewire\LivewireServiceProvider; abstract class Mechanism { function register() { app()->instance(static::class, $this); } function boot() { // } }
SAVE
CANCEL