@extends('layouts.app', ['activePage' => 'resolution-list', 'titlePage' => __('Resolution List')]) @section('content')

Resolution Listing

Add New Resolution @if (session('message'))
{{ session('message') }}
@endif @if(Session::has("success"))
{{Session::get("success")}}
@elseif(Session::has("failed")) {{Session::get("failed")}} @endif
@if(isset($list) && !empty($list)) @foreach($list as $key => $value) @endforeach @endif
SR.NO EVSN EVSN Type Name Start Date End Date Meeting Date Total Shares Status Voting Status Created Date Action
{{($key+1)}} {{$value->evsn}} {{ucfirst($value->evsn_type)}} {{ucfirst($value->entity->name)}} {{Carbon\Carbon::parse($value->voting_start_date)->format('d-m-Y')}} {{Carbon\Carbon::parse($value->voting_end_date)->format('d-m-Y')}} {{Carbon\Carbon::parse($value->meeting_date)->format('d-m-Y')}} @if($value->total_shares){{$value->total_shares}}@else Awaiting for Approval @endif {{$value->status}} {{$value->voting_count()}}/{{$value->total_resolution()}} @if($value->is_finalized == 1)
Finalized
@endif
{{Carbon\Carbon::parse($value->created_at)->format('d-m-Y')}} View @if($value->is_finalized != 1) Edit
@csrf @method('DELETE')
@endif
{{ $list->links() }}
@endsection