@extends('layouts/contentNavbarLayout') @section('title', 'Community Guest Fees Details') @section('page-style') @endsection @section('content')

Home / Community Guest Fees Details

{!! Form::model($community, ['route' => ['communities.guest-fees', Crypt::encrypt($community->id)], 'method' => 'put', 'class' => 'p-4 progress-form', 'id' => 'progress-form', 'files' => true]) !!}
Guest Fees Details
{!! Form::label('guest_fees', 'Guest Fees', ['class' => 'form-label']) !!} {!! Form::number('guest_fees', @$community->guest_fees, ['class' => 'form-control', 'placeholder' => 'Guest Fees', 'step'=>'0.01']) !!}
{!! Form::label('max_guest_allowed', 'Max guest allowed', ['class' => 'form-label']) !!} {!! Form::select('max_guest_allowed', $guest_count, @$community->max_guest_allowed, ['class' => 'form-control form-select']) !!}
{!! Form::button('Submit', ['type' => 'submit', 'class' => 'btn btn-primary']) !!}
{!! Form::label('qr_code', 'QrCode to make payment', ['class' => 'form-label']) !!}
{{ QrCode::size(150)->generate($qr_url) }}
Download QR {!! Form::close() !!}
Guest List
ID Name Phone Number Vehicle Plate No Amount Guest Code Action
@endsection @section('page-script') @endsection