| 12345678910111213141516171819202122 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Model;
- /**
- * @method static Builder orderBy(string $string, string $string1)
- */use App\Traits\ModelTimeFormat;
- class Logistic extends Model
- {
- use ModelTimeFormat;
- protected $fillable = ['name','code'];
- static function nameById($id){
- $logistic=Logistic::where('id',$id)->first();
- return $logistic?$logistic['name']:'';
- }
- }
|