laravel-utils maintained by illegal
Description
Laravel Utils is a collection of useful tools for Laravel.
Author
Last update
2023/05/14 19:13
(dev-main)
License
Downloads
3 092
Laravel Utils
This repository contains a collection of useful classes and traits for Laravel.
It is used mainly for illegal studio projects.
HasPrefix
This traits can be used to add a prefix to your model's table name.
class MyModel extends Model
{
use HasPrefix;
protected $prefix = 'my_prefix_';
}
Alternatively you can use the getPrefix method to set the prefix.
This is useful if you want to set the prefix dynamically.
class MyModel extends Model
{
use HasPrefix;
public function getPrefix()
{
return config('my.prefix');
}
}