Skip to content

Tag: laravel

How to validate phone number in laravel 5.2? [closed]

Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 2 years ago. Improve this question I wan…

How to write html tag inside blade form object label..?

I have to write “Name * : “, where astrix will be red. i am creating label as: But this will result in:Name with html tag span tag. thanks Answer For this you have to pass an array. Something like below: And style this require class below way. Hope this should work. Another way, UPDATED: I think, …

Laravel Eloquent where field is X or null

I have a table like this: Now I want to get all entries where field1 is 1, field2 is null and where datefield is smaller than X or null. I already tried something like this: but thats not working. I always get every entry where datefield is null. It doesn’t matter what the other fields are. I also tried…