tables.php 305 B

1234567891011121314151617
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Project;
  5. class tables extends Controller
  6. {
  7. public function show()
  8. {
  9. $bank = Project::find(1)->spheres;
  10. $bank1 = json_decode($bank, true);
  11. return view('Bank')->with(['banks' => $bank1]);
  12. }
  13. }