Preview:
Route::get('/test', function() {
    return response()->json([
        'message' => 'مرحباً بك في API التجريبي',
        'status' => 'success',
        'timestamp' => now(),
        'data' => [
            'items' => [
                ['id' => 1, 'name' => 'عنصر 1'],
                ['id' => 2, 'name' => 'عنصر 2'],
                ['id' => 3, 'name' => 'عنصر 3']
            ]
        ]
    ]);
});

Route::post('/test', function(Request $request) {
    return response()->json([
        'message' => 'تم استلام البيانات بنجاح',
        'received_data' => $request->all(),
        'timestamp' => now()
    ], 201);
});
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter