Cách sử dụng help và một số cách sử dụng nhanh chóng (ok)

Example 1

Thay vì sử dụng

$page = new Page();
$page->title = $request->input('title');
$page->slug = $request->input('slug');
$page->fields = [
    'image_url' => $request->input('image_url'),
    'subtitle' => $request->input('subtitle'),
    'button_text' => $request->input('button_text'),
];
$page->save();

Ta sử dụng

$page->fields = json_encode($request->input('fields'));

Last updated

Was this helpful?