@extends('layouts.admin') @section('page-title') {{__('Manage Project Bug Status')}} @endsection @section('breadcrumb') @endsection @push('script-page') @if(\Auth::user()->type=='company') @endif @endpush @section('action-btn') @can('create bug status')
@endcan @endsection @section('content')
@php($i=0) @foreach ($bugStatus as $key => $bug)
    @foreach ($bugStatus as $bug)
  • {{$bug->title}} @can('edit bug status') @endcan @can('delete bug status')
    {!! Form::open(['method' => 'DELETE', 'route' => ['bugstatus.destroy', $bug->id],'id'=>'delete-form-'.$bug->id]) !!} {!! Form::close() !!}
    @endcan
  • @endforeach
@php($i++) @endforeach

{{__('Note')}} : {{__('You can easily change order of project Bug status using drag & drop.')}}

@endsection