setForm(); } /** * Return form elements. * * @return array. */ public function form($element = 'fields', $grouped = true) { $item = collect($this->form->get($element)); if ($element == 'fields' && $grouped == true) { return $item->groupBy(['group', 'section']); } return $item; } /** * Sets the form and form elements. * @return null. */ public function setForm() { $this->form = collect([ 'form' => [ 'store' => [], 'update' => [], ], 'groups' => [ 'main' => 'Main', ], 'fields' => [ 'parent_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.parent_id'), "placeholder" => trans('deal::conveyancing.placeholder.parent_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'buyer_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.buyer_id'), "placeholder" => trans('deal::conveyancing.placeholder.buyer_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'seller_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.seller_id'), "placeholder" => trans('deal::conveyancing.placeholder.seller_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'team_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.team_id'), "placeholder" => trans('deal::conveyancing.placeholder.team_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'offer_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.offer_id'), "placeholder" => trans('deal::conveyancing.placeholder.offer_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'seller_source' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.seller_source'), "placeholder" => trans('deal::conveyancing.placeholder.seller_source'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'buyer_source' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.buyer_source'), "placeholder" => trans('deal::conveyancing.placeholder.buyer_source'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'category_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.category_id'), "placeholder" => trans('deal::conveyancing.placeholder.category_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'listing_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.listing_id'), "placeholder" => trans('deal::conveyancing.placeholder.listing_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'opportunity_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.opportunity_id'), "placeholder" => trans('deal::conveyancing.placeholder.opportunity_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'country_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.country_id'), "placeholder" => trans('deal::conveyancing.placeholder.country_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'state_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.state_id'), "placeholder" => trans('deal::conveyancing.placeholder.state_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'city_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.city_id'), "placeholder" => trans('deal::conveyancing.placeholder.city_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'location_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.location_id'), "placeholder" => trans('deal::conveyancing.placeholder.location_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'sublocation_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.sublocation_id'), "placeholder" => trans('deal::conveyancing.placeholder.sublocation_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'property_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.property_id'), "placeholder" => trans('deal::conveyancing.placeholder.property_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'ref' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.ref'), "placeholder" => trans('deal::conveyancing.placeholder.ref'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'type' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.type'), "placeholder" => trans('deal::conveyancing.placeholder.type'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'sub_type' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.sub_type'), "placeholder" => trans('deal::conveyancing.placeholder.sub_type'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'property_type' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.property_type'), "placeholder" => trans('deal::conveyancing.placeholder.property_type'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'developer_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.developer_id'), "placeholder" => trans('deal::conveyancing.placeholder.developer_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'bua' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.bua'), "placeholder" => trans('deal::conveyancing.placeholder.bua'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'plot' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.plot'), "placeholder" => trans('deal::conveyancing.placeholder.plot'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'premises_no' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.premises_no'), "placeholder" => trans('deal::conveyancing.placeholder.premises_no'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'price' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.price'), "placeholder" => trans('deal::conveyancing.placeholder.price'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'title' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.title'), "placeholder" => trans('deal::conveyancing.placeholder.title'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'str' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.str'), "placeholder" => trans('deal::conveyancing.placeholder.str'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'fitted' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.fitted'), "placeholder" => trans('deal::conveyancing.placeholder.fitted'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'baths' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.baths'), "placeholder" => trans('deal::conveyancing.placeholder.baths'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'plot_area' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.plot_area'), "placeholder" => trans('deal::conveyancing.placeholder.plot_area'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'frequency' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.frequency'), "placeholder" => trans('deal::conveyancing.placeholder.frequency'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'furnished' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.furnished'), "placeholder" => trans('deal::conveyancing.placeholder.furnished'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'cheques' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.cheques'), "placeholder" => trans('deal::conveyancing.placeholder.cheques'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'instalments' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.instalments'), "placeholder" => trans('deal::conveyancing.placeholder.instalments'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'instalment' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.instalment'), "placeholder" => trans('deal::conveyancing.placeholder.instalment'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'maintenance_fee' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.maintenance_fee'), "placeholder" => trans('deal::conveyancing.placeholder.maintenance_fee'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'next_available' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.next_available'), "placeholder" => trans('deal::conveyancing.placeholder.next_available'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'rent_start_date' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.rent_start_date'), "placeholder" => trans('deal::conveyancing.placeholder.rent_start_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'rent_end_date' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.rent_end_date'), "placeholder" => trans('deal::conveyancing.placeholder.rent_end_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'rera' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.rera'), "placeholder" => trans('deal::conveyancing.placeholder.rera'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'payment_mode' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.payment_mode'), "placeholder" => trans('deal::conveyancing.placeholder.payment_mode'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'deposit' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.deposit'), "placeholder" => trans('deal::conveyancing.placeholder.deposit'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'deposit_percent' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.deposit_percent'), "placeholder" => trans('deal::conveyancing.placeholder.deposit_percent'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_buyer' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_buyer'), "placeholder" => trans('deal::conveyancing.placeholder.commission_buyer'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_buyer_percent' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_buyer_percent'), "placeholder" => trans('deal::conveyancing.placeholder.commission_buyer_percent'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_seller' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_seller'), "placeholder" => trans('deal::conveyancing.placeholder.commission_seller'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_seller_percent' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_seller_percent'), "placeholder" => trans('deal::conveyancing.placeholder.commission_seller_percent'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_buyer_vat' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_buyer_vat'), "placeholder" => trans('deal::conveyancing.placeholder.commission_buyer_vat'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission_seller_vat' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission_seller_vat'), "placeholder" => trans('deal::conveyancing.placeholder.commission_seller_vat'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'company_com_prs' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.company_com_prs'), "placeholder" => trans('deal::conveyancing.placeholder.company_com_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'company_com_amt' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.company_com_amt'), "placeholder" => trans('deal::conveyancing.placeholder.company_com_amt'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'deal_date' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.deal_date'), "placeholder" => trans('deal::conveyancing.placeholder.deal_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'spa_date' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.spa_date'), "placeholder" => trans('deal::conveyancing.placeholder.spa_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'deal_est_date' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.deal_est_date'), "placeholder" => trans('deal::conveyancing.placeholder.deal_est_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'unit_no' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.unit_no'), "placeholder" => trans('deal::conveyancing.placeholder.unit_no'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'subject_of_tenancy' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.subject_of_tenancy'), "placeholder" => trans('deal::conveyancing.placeholder.subject_of_tenancy'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'period_of_tenancy' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.period_of_tenancy'), "placeholder" => trans('deal::conveyancing.placeholder.period_of_tenancy'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'terms_of_payment' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.terms_of_payment'), "placeholder" => trans('deal::conveyancing.placeholder.terms_of_payment'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'shared' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.shared'), "placeholder" => trans('deal::conveyancing.placeholder.shared'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agent_name' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agent_name'), "placeholder" => trans('deal::conveyancing.placeholder.agent_name'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency_name' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agency_name'), "placeholder" => trans('deal::conveyancing.placeholder.agency_name'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'representing' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.representing'), "placeholder" => trans('deal::conveyancing.placeholder.representing'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agents_name' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agents_name'), "placeholder" => trans('deal::conveyancing.placeholder.agents_name'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency_prs' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.agency_prs'), "placeholder" => trans('deal::conveyancing.placeholder.agency_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agents_contact_no' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agents_contact_no'), "placeholder" => trans('deal::conveyancing.placeholder.agents_contact_no'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agent1' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agent1'), "placeholder" => trans('deal::conveyancing.placeholder.agent1'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission1_prs' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission1_prs'), "placeholder" => trans('deal::conveyancing.placeholder.commission1_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission1_amt' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.commission1_amt'), "placeholder" => trans('deal::conveyancing.placeholder.commission1_amt'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agent2' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agent2'), "placeholder" => trans('deal::conveyancing.placeholder.agent2'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission2_prs' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission2_prs'), "placeholder" => trans('deal::conveyancing.placeholder.commission2_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission2_amt' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission2_amt'), "placeholder" => trans('deal::conveyancing.placeholder.commission2_amt'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agent3' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agent3'), "placeholder" => trans('deal::conveyancing.placeholder.agent3'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission3_prs' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission3_prs'), "placeholder" => trans('deal::conveyancing.placeholder.commission3_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'commission3_amt' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.commission3_amt'), "placeholder" => trans('deal::conveyancing.placeholder.commission3_amt'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency_commission_prs' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agency_commission_prs'), "placeholder" => trans('deal::conveyancing.placeholder.agency_commission_prs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency_commission_amt' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agency_commission_amt'), "placeholder" => trans('deal::conveyancing.placeholder.agency_commission_amt'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.agency'), "placeholder" => trans('deal::conveyancing.placeholder.agency'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'agency_amount' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.agency_amount'), "placeholder" => trans('deal::conveyancing.placeholder.agency_amount'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'conveyance_fee' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.conveyance_fee'), "placeholder" => trans('deal::conveyancing.placeholder.conveyance_fee'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'penalty' => [ "type" => 'decimal', "label" => trans('deal::conveyancing.label.penalty'), "placeholder" => trans('deal::conveyancing.placeholder.penalty'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'prev_notes' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.prev_notes'), "placeholder" => trans('deal::conveyancing.placeholder.prev_notes'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'beds' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.beds'), "placeholder" => trans('deal::conveyancing.placeholder.beds'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'atype' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.atype'), "placeholder" => trans('deal::conveyancing.placeholder.atype'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'street' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.street'), "placeholder" => trans('deal::conveyancing.placeholder.street'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'floor' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.floor'), "placeholder" => trans('deal::conveyancing.placeholder.floor'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'property_usage' => [ "type" => 'select', "label" => trans('deal::conveyancing.label.property_usage'), "placeholder" => trans('deal::conveyancing.placeholder.property_usage'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'tenancy' => [ "type" => 'date_picker', "label" => trans('deal::conveyancing.label.tenancy'), "placeholder" => trans('deal::conveyancing.placeholder.tenancy'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'notes' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.notes'), "placeholder" => trans('deal::conveyancing.placeholder.notes'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'documents' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.documents'), "placeholder" => trans('deal::conveyancing.placeholder.documents'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'pdf_documents' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.pdf_documents'), "placeholder" => trans('deal::conveyancing.placeholder.pdf_documents'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'seller_documents' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.seller_documents'), "placeholder" => trans('deal::conveyancing.placeholder.seller_documents'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'buyer_documents' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.buyer_documents'), "placeholder" => trans('deal::conveyancing.placeholder.buyer_documents'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'deals_area' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.deals_area'), "placeholder" => trans('deal::conveyancing.placeholder.deals_area'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'google_review' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.google_review'), "placeholder" => trans('deal::conveyancing.placeholder.google_review'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'property_management' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.property_management'), "placeholder" => trans('deal::conveyancing.placeholder.property_management'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'verified_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.verified_id'), "placeholder" => trans('deal::conveyancing.placeholder.verified_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'completed_date' => [ "type" => 'date_time_picker', "label" => trans('deal::conveyancing.label.completed_date'), "placeholder" => trans('deal::conveyancing.placeholder.completed_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'notifications' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.notifications'), "placeholder" => trans('deal::conveyancing.placeholder.notifications'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'approved_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.approved_id'), "placeholder" => trans('deal::conveyancing.placeholder.approved_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'approved_date' => [ "type" => 'date_time_picker', "label" => trans('deal::conveyancing.label.approved_date'), "placeholder" => trans('deal::conveyancing.placeholder.approved_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'closed_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.closed_id'), "placeholder" => trans('deal::conveyancing.placeholder.closed_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'closed_date' => [ "type" => 'date_time_picker', "label" => trans('deal::conveyancing.label.closed_date'), "placeholder" => trans('deal::conveyancing.placeholder.closed_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'payment_date' => [ "type" => 'date_time_picker', "label" => trans('deal::conveyancing.label.payment_date'), "placeholder" => trans('deal::conveyancing.placeholder.payment_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'rejected_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.rejected_id'), "placeholder" => trans('deal::conveyancing.placeholder.rejected_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'rejected_description' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.rejected_description'), "placeholder" => trans('deal::conveyancing.placeholder.rejected_description'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'status_previous' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.status_previous'), "placeholder" => trans('deal::conveyancing.placeholder.status_previous'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'status_aml' => [ "type" => 'select', "label" => trans('deal::conveyancing.label.status_aml'), "placeholder" => trans('deal::conveyancing.placeholder.status_aml'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'status_fcs' => [ "type" => 'select', "label" => trans('deal::conveyancing.label.status_fcs'), "placeholder" => trans('deal::conveyancing.placeholder.status_fcs'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_id' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.aml_id'), "placeholder" => trans('deal::conveyancing.placeholder.aml_id'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_required' => [ "type" => 'select', "label" => trans('deal::conveyancing.label.aml_required'), "placeholder" => trans('deal::conveyancing.placeholder.aml_required'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_ids' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.aml_ids'), "placeholder" => trans('deal::conveyancing.placeholder.aml_ids'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_notes' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.aml_notes'), "placeholder" => trans('deal::conveyancing.placeholder.aml_notes'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_score' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.aml_score'), "placeholder" => trans('deal::conveyancing.placeholder.aml_score'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'aml_date' => [ "type" => 'date_time_picker', "label" => trans('deal::conveyancing.label.aml_date'), "placeholder" => trans('deal::conveyancing.placeholder.aml_date'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'created_by' => [ "type" => 'numeric', "label" => trans('deal::conveyancing.label.created_by'), "placeholder" => trans('deal::conveyancing.placeholder.created_by'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], 'additional_terms' => [ "type" => 'text', "label" => trans('deal::conveyancing.label.additional_terms'), "placeholder" => trans('deal::conveyancing.placeholder.additional_terms'), "rules" => '', "group" => "main", "section" => "first", "attributes" => [ 'wrapper' => [], "label" => [], "input" => [], ], ], ] ); } }