Skip to main content

concept of class inphp

<div  class="printstr{{$g->id}}" style="border: 0px solid #a1a1a1; background: white; padding:10px; margin: 0 auto; text-align: center;">    <?php    $barcode->setText($g->id);    $barcode->setType(\CodeItNow\BarcodeBundle\Utils\BarcodeGenerator::Code128);    $barcode->setScale(2);    $barcode->setThickness(25);    $barcode->setFontSize(10);    $code = $barcode->generate();    echo '<img src="data:image/png;base64,'.$code.'" />';    ?>    {{--<img alt='testing' src="{{asset('assets/barcode.php?codetype=Code39&size=40&text='.$g->id.'&print=true')}}">--}}    <span id="mprice" name="mprice">{{$g->selling_price}}</span>
</div>




<button type="submit" class="btn btn-danger btn-block" value="printstr{{$g->id}}" onclick="printsticker(this)"><i class="fa fa-print">&nbsp;&nbsp;&nbsp; Print Sticker</i></button>




@section('javascript')    <script type="text/javascript" src="{{asset('assets/jQuery.print.js')}}"></script>
    <script type="text/javascript" src="{{asset('assets/datatables/js/jquery.dataTables.min.js')}}"></script>    <script type="text/javascript">        $(document).ready(function(){
            $('#dtable').DataTable();        });        var globaltemp="printttt";        function printsticker(sel)
        {
            var x=sel.value;            var y='.'+x;            // alert('he');            // alert("he;l");            $.print(y);            // document.location.href = "product_registration";
        }

       /* $(function(){            $('#printstrbtn').on('click', function() {
                $('.printstr').show();                //Print ele2 with default options                $.print(".printstr");                document.location.href = "sampleindex";            });        });*/    </script>
@endsection


Comments

Popular posts from this blog

laravel file manager sorting by time default

Ref :  https://github.com/UniSharp/laravel-filemanager/issues/337 To load files order by "time DESC" you can change the code in vendor/unisharp/laravel-filemanager/src/traits/LfmHelpers.php public function sortFilesAndDirectories($arr_items, $sort_type) { if ($sort_type == 'time') { $key_to_sort = 'updated'; } elseif ($sort_type == 'alphabetic') { $key_to_sort = 'name'; } else { $key_to_sort = 'updated'; } return strcmp($a->{$key_to_sort}, $b->{$key_to_sort}); }); return $arr_items; } with public function sortFilesAndDirectories($arr_items, $sort_type) { if ($sort_type == 'time') { $key_to_sort = 'updated'; } elseif ($sort_type == 'alphabetic') { $key_to_sort = 'name'; } else { $key_to_sort = 'updated'; ...

Setting and Getting Cookie and Session in laravel

First of all lets discuss many ways to set cookies inside controller : $response = new Response ( redirect ( 'news' )); //$minute=5; // $response->withCookie(cookie('name', 'virat', $minutes)); $response -> withCookie ( cookie ()-> forever ( 'news_id' , $newsid )); return $response ; // or // Cookie::queue('news_id', $news_id, 15); // return redirect('news'); // or // return redirect('news')->withCookie(cookie('name', 'virat', $minutes)); use Illuminate\Support\Facades\ Request ; use Illuminate\Http\ Response ; use Illuminate\Support\Facades\ Cookie ; To get cookies: inside controller $val = Request :: cookie ( 'news_id' ); // dd($val); $v = Cookie :: get ( 'news_id' ); // dd($v); or $value = $request -> cookie ( 'name' ); in blade: {{ Cookie :: get ( 'news_id' ) }} Now lets see for session: Ref...