10 lines
128 B
PHP
10 lines
128 B
PHP
@extends ("layouts.app")
|
|
|
|
@section('title', 'Main Page')
|
|
|
|
@section('content')
|
|
|
|
<x-list-post :posts="$posts" />
|
|
|
|
@endsection
|