Posts by Renne Galli • 121 points
8 posts
-
2
votes2
answers761
viewsQ: Connection between two Docker containers
I created 3 containers to start my application, they are: version: "2" services: mysql: image: mysql:5.7 container_name: rgsistema-mysql working_dir: /application volumes: - .:/application…
-
1
votes1
answer136
viewsQ: Condition for table relationship in the Standard
I have the following tables of my system, products, Provider and product_provider, have the following structures: Schema::create('products', function(Blueprint $table) { $table->increments('id');…
laravelasked Renne Galli 121 -
0
votes1
answer421
viewsQ: Coupon-style PDF size
I need to create a coupon style PDF, to send to a Daruma DR800 non-fiscal printer. I need to know how to generate a custom sized PDF and its contents. I already generate PDF with DOMPDF in Laravel…
-
-2
votes1
answer1053
viewsQ: Printing non tax PHP coupon
Hello, I was wondering if it is possible to print tax-free coupon via PHP? If so, how could I implement it? I use Laravel 5.5
-
1
votes1
answer531
viewsQ: Insert Many to Many Laravel 5.5
I’m doing a data insertion on a form where it contains data of a relation many for many (Many to Many), my difficulty is in inserting in the pivot table more than one reference data, follow post…
-
1
votes1
answer2132
viewsQ: Paging in Laravel 5.5
I am making a data pagination as follows: Controller: $brands = $this->brand::where('id', $filter_id)->paginate($this->total_page); View: {{ $brands->appends(['id' =>…
-
2
votes1
answer1472
viewsQ: Laravel Search Form 5.5
I would like to know how to filter my data from the database with a form where it contains more than 1 field to filter, I could only do with one field. Form: <form action="{{ url('panel/brands')…
-
2
votes0
answers134
viewsQ: Tree 5.5 - categories of a tree
I have the following structure of a table "Categories": public function up() { Schema::create('categories', function (Blueprint $table) { $table->increments('id');…