@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
// Faker'ı kullanmak için
$faker = Faker\Factory::create();
@endphp
@for($i = 0; $i < 6; $i++)
@php
$name = $faker->name;
$job = $faker->jobTitle;
$image = $faker->imageUrl(128, 128, 'people');
@endphp
@endfor
@endsection