@extends('backend.master') @section('title') Online Payment @endsection @section('body') @if(Auth::user()->user_type == 0 || Auth::user()->user_type == 1)

Online Payment

{{ Form::open(['route' => ['system.db.update-for-online-pay', $db->id], 'method'=>'POST', 'class'=>'needs-validation', 'novalidate']) }} @method('PUT')

online_pay_status_for_report == 1 ? 'checked' : '' }} name="online_pay_status_for_report" id="on" value="1">
online_pay_status_for_report == 0 ? 'checked' : '' }} name="online_pay_status_for_report" id="off" value="0">
{{ Form::close() }}
@else @include('backend.errors.404') @endif @endsection