mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 19:22:35 +01:00
33 lines
981 B
PHP
33 lines
981 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
@lang('export.export')
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<p>@lang('export.export_help')</p>
|
|
|
|
<form action="{{ route('do-html-export') }}" method="post" class="mb-3">
|
|
@csrf
|
|
<button type="submit" name="method" value="html" class="btn btn-primary export-submit">
|
|
<x-icon.upload class="me-2"/>
|
|
@lang('export.start_export_html')
|
|
</button>
|
|
</form>
|
|
|
|
<form action="{{ route('do-csv-export') }}" method="post">
|
|
@csrf
|
|
<button type="submit" name="method" value="csv" class="btn btn-primary export-submit">
|
|
<x-icon.upload class="me-2"/>
|
|
@lang('export.start_export_csv')
|
|
</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|