@extends('organizations.layouts.default') @section('title') / Recommended @endsection @section('content')
@include('organizations.layouts.partials.breadcrumb')
{{ ym_input([ 'type' => 'text', 'name' => 'org_name', 'label' => 'Organization', 'placeholder' => 'Organization', 'value' => request('org_name'), ]) }} {{ ym_input([ 'type' => 'text', 'name' => 'roster_title', 'label' => 'Title', 'value' => request('roster_title'), 'placeholder' => 'Title', ]) }} {{ ym_date([ 'name' => 'end_date', 'value' => request('end_date'), 'label' => 'Apply Before', ]) }}
Reset
@forelse ($records as $roster) @empty @endforelse
S.N Organization Title Apply Before Action
{{ nepali_number(++$loop->index) }}. {{ $roster->organization->name ?? '-' }} {{ $roster->roster_title }}

Published: {{ \Carbon\Carbon::parse($roster->start_date)->format('Y-M-d') }}

{{ \Carbon\Carbon::parse($roster->end_date)->format('Y-M-d H:i') }} @if (now()->lte($roster->end_date))

{{ now()->diffForHumans($roster->end_date, true) }} remaining

@else

Expired

@endif
View
{{ __('table.no_data') }}
{{ $records->links('pagination::tailwind') }}
@endsection