Answers for "string to array in laravel blade"

PHP
0

explode in laravel blade

@if ($data->facings != "")
  @foreach(explode(',', $data->facings) as $info) 
    <option>{{$info}}</option>
  @endforeach
@endif
//@sujay
Posted by: Guest on October-16-2020
0

string to array in laravel

$explode_id = json_decode($request->data, true);
Posted by: Guest on October-24-2020

Code answers related to "string to array in laravel blade"

Browse Popular Code Answers by Language