mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
adds purchase cost partial to models
This commit is contained in:
parent
c9f8a84d48
commit
90c41d9510
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::table('models', function (Blueprint $table) {
|
||||||
|
//
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::table('models', function (Blueprint $table) {
|
||||||
|
//
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
|
@ -16,7 +16,7 @@
|
||||||
@include ('partials.forms.edit.model_number')
|
@include ('partials.forms.edit.model_number')
|
||||||
@include ('partials.forms.edit.depreciation')
|
@include ('partials.forms.edit.depreciation')
|
||||||
@include ('partials.forms.edit.minimum_quantity')
|
@include ('partials.forms.edit.minimum_quantity')
|
||||||
|
@include ('partials.forms.edit.purchase_cost')
|
||||||
<!-- EOL -->
|
<!-- EOL -->
|
||||||
|
|
||||||
<div class="form-group {{ $errors->has('eol') ? ' has-error' : '' }}">
|
<div class="form-group {{ $errors->has('eol') ? ' has-error' : '' }}">
|
||||||
|
|
Loading…
Reference in a new issue