mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -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'));
|
||||
}
|
||||
|
||||
// Show the page
|
||||
//$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);
|
||||
return View::make('depreciations/edit', compact('depreciation'));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -29,11 +29,7 @@
|
|||
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
||||
|
||||
<div class="box box-default">
|
||||
@if ($depreciation->id)
|
||||
<div class="box-heading">
|
||||
{{ $depreciation->name }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
<div class="box-body">
|
||||
|
|
Loading…
Reference in a new issue