Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵增煜
/
tzt-admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1c3fa528
authored
Nov 18, 2024
by
lujunyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
电子 印章
parent
9b23667f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
app/Admin/Controllers/PrescriptionPrintController.php
+0
-0
database/migrations/2024_11_18_155308_add_prescription_pic_eseal_to_prescription_table.php
+28
-0
public/static/images/dianzizhang.png
+0
-0
No files found.
app/Admin/Controllers/PrescriptionPrintController.php
View file @
1c3fa528
This diff is collapsed.
Click to expand it.
database/migrations/2024_11_18_155308_add_prescription_pic_eseal_to_prescription_table.php
0 → 100644
View file @
1c3fa528
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
return
new
class
extends
Migration
{
/**
* Run the migrations.
*/
public
function
up
()
:
void
{
Schema
::
table
(
'prescription'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'prescription_pic_eseal'
)
->
nullable
()
->
comment
(
'处方单带电子印章图片地址'
);
});
}
/**
* Reverse the migrations.
*/
public
function
down
()
:
void
{
Schema
::
table
(
'prescription'
,
function
(
Blueprint
$table
)
{
//
});
}
};
public/static/images/dianzizhang.png
0 → 100644
View file @
1c3fa528
47.2 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment