dd/app/Models/Ship.php
2025-07-02 16:49:15 +08:00

20 lines
313 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Ship extends Model
{
protected $table = 'ship';
public $timestamps = false;
public static function _find($sCode)
{
$oSelf = self::where("code", $sCode)->first();
return $oSelf;
}
}