ultimatepos/Modules/Portal/Resources/views/customer/proposals/index.blade.php

26 lines
1.1 KiB
PHP

@extends('portal::layouts.customer')
@section('title', __('crm::lang.proposals'))
@section('content')
<section class="content-header"><h1>@lang('crm::lang.proposals')</h1></section>
<section class="content">
<div class="box box-primary"><div class="table-responsive">
<table class="table table-bordered table-striped">
<thead><tr><th>@lang('crm::lang.subject')</th><th>@lang('messages.date')</th><th></th></tr></thead>
<tbody>
@forelse($proposals as $proposal)
<tr>
<td>{{ $proposal->subject }}</td>
<td>@format_datetime($proposal->created_at)</td>
<td><a href="{{ action([\Modules\Portal\Http\Controllers\Customer\ProposalController::class, 'show'], [$proposal->id]) }}" class="btn btn-xs btn-info">@lang('portal::lang.view_details')</a></td>
</tr>
@empty
<tr><td colspan="3" class="text-center text-muted">@lang('portal::lang.no_records')</td></tr>
@endforelse
</tbody>
</table>
</div>
{{ $proposals->links() }}
</div>
</section>
@endsection