mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
13cf11368f
* Reformat all view files. Check for matching tags and rearrange to make everything line up. * Fix regression on asset create where the log was no longer saved.
70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('admin/companies/table.companies') }}
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('companies.create') }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.create') }}</a>
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped" name="companies">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-1">{{ trans('general.id') }}</th>
|
|
<th class="col-md-9">{{ trans('admin/companies/table.name') }}</th>
|
|
<th class="col-md-2">{{ trans('table.actions') }}</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
@foreach ($companies as $company)
|
|
<tr>
|
|
<td>{{ $company->id }}</td>
|
|
<td>{{ $company->name }}</td>
|
|
<td>
|
|
<form method="POST" action="{{ route('companies.destroy', $company->id) }}" role="form">
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
<a href="{{ route('companies.edit', $company->id) }}" class="btn btn-sm btn-warning"
|
|
title="{{ trans('button.edit') }}">
|
|
<i class="fa fa-pencil icon-white"></i>
|
|
</a>
|
|
|
|
<button type="submit" class="btn btn-sm btn-danger" title="{{ trans('button.delete') }}">
|
|
<i class="fa fa-trash icon-white"></i>
|
|
</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div><!-- /.box-body -->
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
|
|
<!-- side address column -->
|
|
<div class="col-md-3">
|
|
<h4>About Companies</h4>
|
|
<p>
|
|
You can use companies as a simple placeholder, or you can use them to restrict asset visibility and availability to users with a specific company.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|