dbfdg @extends('layouts.admin') @section('page-title') {{__('Manage Bug Report')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn')
@if($view == 'grid') @else {{__('Card View')}} @endif @can('manage project') @endcan
@endsection @section('content')
@if(count($bugs) > 0) @foreach($bugs as $bug)
{{$bug->title}} @if($bug->priority =='low') {{ ucfirst($bug->priority) }} @elseif($bug->priority =='medium') {{ ucfirst($bug->priority) }} @elseif($bug->priority =='high') {{ ucfirst($bug->priority) }} @endif
{{ \Auth::user()->dateFormat($bug->start_date) }}
{{ \Auth::user()->dateFormat($bug->due_date) }}
@endforeach @else
{{__('No tasks found')}}
@endif
@endsection