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

10 lines
319 B
PHP

@extends('layout')
@section('title')
<title>{{$post->title}}</title>
@endsection
@section('content')
<h2 style="color:black; margin-top:100px">{{$post->title}}</h2>
<p style="color:black; width:80%; margin:auto; font-size:20px;">{{$post->content}} </p>
<a href="{{ url('/blog') }}">Liste des articles</a>
@endsection