there is a table named 'students' and I want to print all datas out, there is no difficulty in it, but for some reason I have to print 'Name' and 'Family' columns character by character in table.I know I should use str_split but don't know how to use it . thnx in advance.
this is my controller:
$students = DB::table('students')->select('*')->get();