20 lines
692 B
PHP
20 lines
692 B
PHP
@extends('layouts.app')
|
|
@section('title', 'New CPQ')
|
|
@section('content')
|
|
@include('industrialengineering::layouts.nav')
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-header"><h3 class="box-title">Select Product Platform</h3></div>
|
|
<div class="box-body">
|
|
<ul class="list-group">
|
|
@foreach($platforms as $id => $name)
|
|
<li class="list-group-item">
|
|
<a href="{{ action([\Modules\IndustrialEngineering\Http\Controllers\CpqController::class, 'configure'], $id) }}">{{ $name }}</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|