@extends('admin.layouts.app') @section('title','Project') @section('css') @endsection @section('contents')
Goto Project
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(isset($issues)) @php $i = 1; @endphp @foreach($issues as $issue) @endforeach @endif
S/N Summary Key Project Priority Date Created Due date Status Action
{{ $i++ }} {{ $issue->summary }} {{ $issue->key }} {{ $issue->project->name }} {{ $issue->priority }} {{ $issue->created_at->diffForHumans() }} {{ date('d-m-Y', strtotime($issue->duedate)) }} {{ $issue->status }}
@endsection @section('js') @endsection