CA_LARAVEL/resources/views/blog.blade.php
2020-03-13 16:29:16 +01:00

21 lines
413 B
PHP

@extends('layout')
@section('title')
<title>Blog</title>
@endsection
@section('content')
<h1 style="color:black"> Nos articles : </h1>
@foreach ($posts as $post)
<a href="{{ url('/blog/detail',$post->id) }}">
<div style="color:black; background-color: white; width:300px; height:40px;margin:auto">
<h2>{{ $post->title }}</h2>
<!-- <p>sdq</p> -->
</div>
</a>
@endforeach
@endsection