illegal/laravel-utils

Laravel Utils is a collection of useful tools for Laravel.

v1.2 2023-05-14 17:13 UTC

This package is auto-updated.

Last update: 2024-05-14 19:21:44 UTC


README

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');
    }
}