@extends('monima._master')
@section('content')
@php
/* non-assciative arrays */
$deep_source = [
['Boo', 'Kitty', 'Mike'],
['Worker 1', 'Worker 2', 'Worker 3'],
];
/* associative array with non-assciative arrays */
$deep_source2 = [
'mains' => ['Boo', 'Kitty', 'Mike'],
'workers' => ['Worker 1', 'Worker 2', 'Worker 3'],
];
/* non-associative array with assciative arrays */
$deep_source3 = [
[
'boo' => ['id' => 0, 'value' => 'Boo', ],
'kitty' => ['id' => 1],
'mike' => ['id' => 2],
],
[
'worker_1' => 'Worker 1',
'worker_2' => ['id' => 4],
'worker_3' => ['id' => 5],
],
];
/* associative array with assciative arrays */
$deep_source4 = [
'mains' => [
'boo' => 'Boo',
'kitty' => 'Kitty',
'mike' => 'Mike',
],
'workers' => [
'worker_1' => 'Worker 1',
'worker_2' => 'Worker 4',
'worker_3' => 'Worker 5',
],
];
@endphp
{{-- --}}
{{-- --}}
@endsection