laravelcollective Questions

6

Solved

I know there are a bunch of other questions floating around out there with the same error, such as: Class 'Illuminate\Html\HtmlServiceProvider' not found Laravel 5 My problem is that...
Bratwurst asked 26/9, 2015 at 8:29

4

Solved

Reading through this SO thread I have read that I can create a new macro to create custom form inputs. I am brand new to Laravel development (big surprise) & it seems a tad overkill for such a...
Tincal asked 6/1, 2016 at 16:45

1

Solved

Since Nova 4 has no blades anymore that you could publish, how could you approach customization the best in for example the head navbar next to the searchbar? I'd like to add a drop-down there but ...
Luciano asked 9/5, 2022 at 20:43

6

Solved

I'm trying to retrieve data from database and bind them to a html select tag, and to bind them I need to use pluck so I get the field I want to show in a array(key => value), because of FORM::se...
Borgeson asked 24/2, 2017 at 20:26

4

Solved

I have a Seller object which has a related User. I need to fill a select from LaravelCollective so I need to make something like this: {!! Form::selectGroup('seller_id', 'Seller', Seller::with('us...
Huntley asked 16/11, 2016 at 14:51

1

Solved

I used the laravelcollective/html package in my Laravel 5 Blade/Bootstrap applications, and now I see that there is no support for Laravel 8. Can you advise something similar compatible with Larave...
Hubbs asked 12/12, 2020 at 14:55

3

I have a form, inside I have a select with some options and I'm using Laravel Collective Forms to build it, I have something like: {!! Form::select('size', $data, $selecteds, ['multiple' => tru...
Lynnelle asked 27/1, 2017 at 13:47

3

Solved

I'm trying to add a trash icon to submit button and I tried this : {!! Form::submit('', ['class' => 'btn btn-warning btn-sm fa fa-trash']) !!} but the icon won't show. How to solve this ? tha...
Estheresthesia asked 18/12, 2016 at 18:31

1

Solved

in my view page I have this route: {!! Form::open(['url' => 'forumcomment/' . $forum->slug, 'files'=>false, 'id' => 'qw-commentform' ,'class' => 'qt-clearfix']) !!} <hr class="...
Proximate asked 20/8, 2017 at 7:35

2

Solved

In html I can use <span> tag inside form label like this: <label for="name" class="class-name">Name:<span class="required"></span></label> Using Laravel Blade, the ...
Sarcenet asked 6/3, 2016 at 0:1

2

Solved

I was using Laravelcollective/html v5.3.0 with laravel 5.3. Now i am using laravel 5.4. I have forms which are using Laravelcollective/html v5.3.0. The composer require laravelcollective/html give...
Cyanocobalamin asked 25/1, 2017 at 6:41

1

Solved

i used laravel 5.3 for my project, i used laravel form collective into it code is below {{ Form::select('size', ['surat' => 'surat', 'mumbai' => 'mumbai','hongkong' => 'hongkong'], 'hongk...
Sheerlegs asked 28/12, 2016 at 8:38

1

Solved

I updated composer.json to remove illuminate\html and add: "require": { "laravelcollective/html": "5.1.*" I removed the providers/aliases from app.php for Illuminate\Html and added the replacem...
Dulcle asked 29/8, 2015 at 7:36
1

© 2022 - 2025 — McMap. All rights reserved.