adds purchase cost partial to models

This commit is contained in:
Godfrey M 2024-08-12 10:35:00 -07:00
parent c9f8a84d48
commit 90c41d9510
2 changed files with 29 additions and 1 deletions

View file

@ -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) {
//
});
}
};

View file

@ -16,7 +16,7 @@
@include ('partials.forms.edit.model_number')
@include ('partials.forms.edit.depreciation')
@include ('partials.forms.edit.minimum_quantity')
@include ('partials.forms.edit.purchase_cost')
<!-- EOL -->
<div class="form-group {{ $errors->has('eol') ? ' has-error' : '' }}">