@extends('layouts.genindex') @section('title') Rumah Rehat @endsection @section('subtitle', 'Buat bayaran rumah rehat MARA') @section('filter-buttons')
@include('layouts.perPage') @endsection @section('filter-fields')
{{ $rr->total() }} rumah rehat ditemui
@endsection @section('list') @if($rr->count() <= 0)
@else @foreach($rr as $r)
{{ $r->unit }} {{ $r->location }}
{{ $r->state->shortname }}
Kadar per malam (RM): {{ $r->ppnight }}
@if($r->state_id == '17')
@else
@endif

@endforeach @endif
{{ $rr->onEachSide(1) ->appends(request()->query()) ->appends(["perPage" => request()->perPage ]) ->appends(["negeri" => request()->negeri ]) ->links() }}
@endsection