1234567891011121314151617 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\Project;
- class tables extends Controller
- {
- public function show()
- {
- $bank = Project::find(1)->spheres;
- $bank1 = json_decode($bank, true);
- return view('Bank')->with(['banks' => $bank1]);
- }
- }
|