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

All users

Export
@foreach($data as $user) @endforeach
Name Biography Position Country Status Actions
avatar
{{ $user['name'] }}
{{ $user['email'] }}
biography {{ $user['position'] }} {{ $user['country'] }}
@if($user['status'] == "Active")
@else
@endif {{ $user['status'] }}
Showing 1-20 of 2290
Previous Next
@endsection