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

28 lines
1.3 KiB
PHP

@extends('portal::layouts.customer')
@section('title', __('portal::lang.my_projects'))
@section('content')
<section class="content-header"><h1>@lang('portal::lang.my_projects')</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('project::lang.project_name')</th><th>@lang('portal::lang.status')</th><th>@lang('portal::lang.progress')</th><th></th></tr></thead>
<tbody>
@forelse($projects as $project)
<tr>
<td>{{ $project->name }}</td>
<td>{{ $project->status ?? '-' }}</td>
<td></td>
<td><a href="{{ action([\Modules\Portal\Http\Controllers\Customer\ProjectController::class, 'show'], [$project->id]) }}" class="btn btn-xs btn-info">@lang('portal::lang.view_details')</a></td>
</tr>
@empty
<tr><td colspan="4" class="text-center text-muted">@lang('portal::lang.no_records')</td></tr>
@endforelse
</tbody>
</table>
</div>
{{ $projects->links() }}
</div>
</section>
@endsection