20 lines
876 B
PHP
20 lines
876 B
PHP
@extends('portal::layouts.customer')
|
|
@section('title', __('industrialengineering::lang.portal_new_configuration'))
|
|
@section('content')
|
|
<section class="content-header"><h1>@lang('industrialengineering::lang.portal_new_configuration')</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-body">
|
|
@forelse($platforms as $platform)
|
|
<a href="{{ route('customer.cpq.configure', $platform->id) }}" class="btn btn-default btn-block" style="text-align:left;margin-bottom:8px;">
|
|
<strong>{{ $platform->name }}</strong>
|
|
<span class="text-muted">({{ $platform->effectiveCode() }})</span>
|
|
</a>
|
|
@empty
|
|
<p class="text-muted">@lang('portal::lang.no_records')</p>
|
|
@endforelse
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|