{{-- Name: company.partials.list Author: JH2 Created: 2016-02-04 --}} @extends('partials.box') @section($content_id) @include('partials.linkbox', [ 'links' => [ 'admin.company.prop.create' => ['name' => Lang::get('company.props.createBtn'), 'param' => $company->id], ] ]) {{-- List all companies --}} @if (!$props->isEmpty()) @foreach($props as $key => $prop) @endforeach @else @endif
{{ Lang::get('company.props.name') }} {{ Lang::get('company.props.value') }}
{{ $prop->name }} {{ $prop->value }}
{{ Lang::get('company.props.noresults') }}
@stop