mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Removed box header
This commit is contained in:
parent
13f85e82bb
commit
f2d883e711
|
@ -100,11 +100,7 @@ class DepreciationsController extends Controller
|
||||||
return Redirect::to('admin/settings/depreciations')->with('error', trans('admin/depreciations/message.does_not_exist'));
|
return Redirect::to('admin/settings/depreciations')->with('error', trans('admin/depreciations/message.does_not_exist'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the page
|
return View::make('depreciations/edit', compact('depreciation'));
|
||||||
//$depreciation_options = array('' => 'Top Level') + Depreciation::lists('name', 'id');
|
|
||||||
|
|
||||||
$depreciation_options = Helper::depreciationList();
|
|
||||||
return View::make('depreciations/edit', compact('depreciation'))->with('depreciation_options', $depreciation_options);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,7 @@
|
||||||
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
||||||
|
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
@if ($depreciation->id)
|
|
||||||
<div class="box-heading">
|
|
||||||
{{ $depreciation->name }}
|
|
||||||
</div>
|
|
||||||
@endif
|
|
||||||
|
|
||||||
|
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
|
Loading…
Reference in a new issue