123456789101112131415161718192021 |
- <?php
-
- namespace App\Model;
-
- use Illuminate\Database\Eloquent\Model;
-
- class Transportation extends Model
- {
-
-
-
- protected $table = 'transportation';
- protected $fillable = [
- 'user_id',
- 'transportation_photo',
- 'name',
- 'transportation_identity',
- 'transportation_type'
- ];
-
- }
|