1. Go to this page and download the library: Download ralphjsmit/laravel-helpers library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ralphjsmit / laravel-helpers example snippets
use RalphJSmit\Helpers\Laravel\Factories\Factory;
class PostFactory extends Factory
{
public function definition(): array
{
return [
'user_id' => null,
];
}
public function withUser(User|UserFactory|Closure|int|null $user = null): static
{
return $this->set('user_id', $this->resolveRelationship(User::class, $user));
}
}
$result = pipe($thing)
->through([
PerformAction::class,
PerformAnotherAction::class,
])
->then(function($result) {
// Do something with $result and return it.
return $result;
});
use RalphJSmit\Helpers\Laravel\Models\Casts\TimeCast;
class Something extends Model
{
protected $casts = [
'time' => TimeCast::class,
];
};
use RalphJSmit\Helpers\Laravel\Models\Casts\TimeCast;
class Something extends Model
{
protected $casts = [
'time' => BooleanAsTimestampCast::class,
];
};
#### Smart factory name guessing with `HasFactory`
You can use the new `HasFactory` trait to automatically guess the name of your factories. This optimized factory trait can also guess the name of factories in different namespaces than `App\Models`, like `Support\.
class MyModel extends Model
{
use HasFactory;
protected $factory = MyModelFactory::class;
}
use RalphJSmit\Helpers\Livewire\CanBeRefreshed;
class MyComponent extends Component
{
use CanBeRefreshed;
// Will register the following event and listener:
// [ '$refresh' => '$refresh', ]
// Registering additional listeners is no problem:
protected $listeners = [
/* Your other listeners */
];
}
use RalphJSmit\Helpers\Livewire\RegisterListeners;
// Somewhere...
$this->registerListeners([
'my-event' => 'myListener'
]);
use RalphJSmit\Helpers\Livewire\RegisterMessages;
// Somewhere...
$this->registerMessages([
'user.email.
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.