You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
961 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
class Company extends Model
{
use HasFactory;
protected $fillable = [
'uuid',
'name',
'image',
'description',
];
public function categories(): HasMany
{
return $this->hasMany(Category::class);
}
public static function validate_with_name(string $name)
{
$name = $name ?? '';
if($name == '')
return [
'error' => 'The company name is empty, please, write the name!!!'
];
$company = company::where('name', $name)->first();
if(!$company)
return [
'error' => 'A company with the name does not exist!!!'
];
return [
'ok' => 'A company with the name is valid.'
];
}
}