|
@@ -12,6 +12,7 @@ use App\Model\Table_six;
|
|
use App\Model\Table_three;
|
|
use App\Model\Table_three;
|
|
use App\Model\Table_two;
|
|
use App\Model\Table_two;
|
|
use App\Model\Tablelist;
|
|
use App\Model\Tablelist;
|
|
|
|
+use Illuminate\Http\Request;
|
|
use Session;
|
|
use Session;
|
|
|
|
|
|
class PrintController extends CommonController
|
|
class PrintController extends CommonController
|
|
@@ -255,4 +256,18 @@ class PrintController extends CommonController
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function print_table(Request $request,$type)
|
|
|
|
+ {
|
|
|
|
+ if($type == 'create'){
|
|
|
|
+ $table = '';
|
|
|
|
+ switch($request->table_type){
|
|
|
|
+ case 1:
|
|
|
|
+ return view('admin.print.table_4_one',compact('table'));
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|