@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Project\'s Flowchart')) @section('content') @if ($errors->any()) @endif @if (session('success')) @endif {{--
--}}

{{ __('Search Filter') }}

@include('asset.entries') @if(auth()->user()->role === 'admin') @endif
@if($flowcharts->count())
{{-- --}} @foreach($flowcharts as $index => $flowchart) @endforeach
# {{ __('Title') }} {{ __('Project') }}{{ __('Ref. No.') }}{{ __('Actions') }}
{{ $index + $flowcharts->firstItem() }} {{ $flowchart->title }}
{{ strtoupper($flowchart->project->ref_no ?? '-') }} {{-- @if ($project->is_registration) Registered @endif --}}
{{ strtoupper($flowchart->project->description ?? '-') }}
{{ $flowcharts->links() }}
@else

No flowcharts found.

@endif
@endsection @section('script') @endsection