@extends('example.layouts.default.dashboard') @section('content') @php $json = Illuminate\Support\Facades\File::get(public_path('data/products.json')); $data = json_decode($json, true); @endphp

All products

@foreach($data as $product) @endforeach
Product Name Technology Description ID Price Discount Actions
{{ $product['name'] }}
{{ $product['category'] }}
{{ $product['technology']}} {{ $product['description']}} {{ $product['id'] }} $ {{ $product['price'] }} {{ $product['discount'] }}
Showing 1-20 of 2290
Previous Next