mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
12 lines
172 B
PHP
12 lines
172 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Policies;
|
||
|
|
||
|
class ManufacturerPolicy extends SnipePermissionsPolicy
|
||
|
{
|
||
|
protected function columnName()
|
||
|
{
|
||
|
return 'manufacturers';
|
||
|
}
|
||
|
}
|