ultimatepos/Modules/IndustrialEngineering/Resources/views/cpq/index.blade.php

29 lines
1.3 KiB
PHP

@extends('layouts.app')
@section('title', 'CPQ')
@section('content')
@include('industrialengineering::layouts.nav')
<section class="content">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">CPQ Configurations</h3>
<div class="box-tools"><a href="{{ action([\Modules\IndustrialEngineering\Http\Controllers\CpqController::class, 'create']) }}" class="btn btn-primary btn-sm">New</a></div>
</div>
<div class="box-body table-responsive">
<table class="table table-bordered table-striped">
<thead><tr><th>Ref</th><th>Name</th><th>Status</th><th>Price</th><th></th></tr></thead>
<tbody>
@foreach($configurations as $c)
<tr>
<td>{{ $c->ref_no }}</td><td>{{ $c->name }}</td><td>{{ $c->status }}</td>
<td>{{ $c->quoted_price }}</td>
<td><a class="btn btn-xs btn-info" href="{{ action([\Modules\IndustrialEngineering\Http\Controllers\CpqController::class, 'show'], $c->id) }}">View</a></td>
</tr>
@endforeach
</tbody>
</table>
{{ $configurations->links() }}
</div>
</div>
</section>
@endsection