11 lines
218 B
PHP
11 lines
218 B
PHP
|
|
@extends('layouts.writer')
|
||
|
|
|
||
|
|
@section('title', 'Writer Dashboard')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<div>
|
||
|
|
<h1>Writer's Dashboard</h1>
|
||
|
|
<a href="{{ route('new_article') }}"><button>New Article</button></a>
|
||
|
|
</div>
|
||
|
|
@endsection
|