ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Models/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/fms-worksuite/app/Models/TaskCategory.php |
<?php namespace App\Models; use App\Traits\HasCompany; /** * App\Models\TaskCategory * * @property int $id * @property string $category_name * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property int|null $added_by * @property int|null $last_updated_by * @property-read mixed $icon * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory newQuery() * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory query() * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereAddedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereCategoryName($value) * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereLastUpdatedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereUpdatedAt($value) * @property int|null $company_id * @property-read \App\Models\Company|null $company * @method static \Illuminate\Database\Eloquent\Builder|TaskCategory whereCompanyId($value) * @mixin \Eloquent */ class TaskCategory extends BaseModel { use HasCompany; protected $table = 'task_category'; public static function allCategories() { if (user()->permission('view_task_category') == 'all') { return TaskCategory::all(); } else { return TaskCategory::where('added_by', user()->id)->get(); } } }